home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / gnuish / flex251s / initscan.c < prev    next >
C/C++ Source or Header  |  1995-03-27  |  109KB  |  3,646 lines

  1. #line 2 "scan.c"
  2. /* A lexical scanner generated by flex */
  3.  
  4. /* Scanner skeleton version:
  5.  * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.81 95/03/20 14:02:24 vern Exp $
  6.  */
  7.  
  8. #define FLEX_SCANNER
  9. #define YY_FLEX_MAJOR_VERSION 2
  10. #define YY_FLEX_MINOR_VERSION 5
  11.  
  12. #include <stdio.h>
  13.  
  14.  
  15. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  16. #ifdef c_plusplus
  17. #ifndef __cplusplus
  18. #define __cplusplus
  19. #endif
  20. #endif
  21.  
  22.  
  23. #ifdef __cplusplus
  24.  
  25. #include <stdlib.h>
  26. #include <unistd.h>
  27.  
  28. /* Use prototypes in function declarations. */
  29. #define YY_USE_PROTOS
  30.  
  31. /* The "const" storage-class-modifier is valid. */
  32. #define YY_USE_CONST
  33.  
  34. #else    /* ! __cplusplus */
  35.  
  36. #if __STDC__
  37.  
  38. #define YY_USE_PROTOS
  39. #define YY_USE_CONST
  40.  
  41. #endif    /* __STDC__ */
  42. #endif    /* ! __cplusplus */
  43.  
  44. #ifdef __TURBOC__
  45.  #pragma warn -rch
  46.  #pragma warn -use
  47. #include <io.h>
  48. #include <stdlib.h>
  49. #define YY_USE_CONST
  50. #define YY_USE_PROTOS
  51. #endif
  52.  
  53. #ifndef YY_USE_CONST
  54. #ifndef const
  55. #define const
  56. #endif
  57. #endif
  58.  
  59.  
  60. #ifdef YY_USE_PROTOS
  61. #define YY_PROTO(proto) proto
  62. #else
  63. #define YY_PROTO(proto) ()
  64. #endif
  65.  
  66. /* Returned upon end-of-file. */
  67. #define YY_NULL 0
  68.  
  69. /* Promotes a possibly negative, possibly signed char to an unsigned
  70.  * integer for use as an array index.  If the signed char is negative,
  71.  * we want to instead treat it as an 8-bit unsigned char, hence the
  72.  * double cast.
  73.  */
  74. #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
  75.  
  76. /* Enter a start condition.  This macro really ought to take a parameter,
  77.  * but we do it the disgusting crufty way forced on us by the ()-less
  78.  * definition of BEGIN.
  79.  */
  80. #define BEGIN yy_start = 1 + 2 *
  81.  
  82. /* Translate the current start state into a value that can be later handed
  83.  * to BEGIN to return to the state.  The YYSTATE alias is for lex
  84.  * compatibility.
  85.  */
  86. #define YY_START ((yy_start - 1) / 2)
  87. #define YYSTATE YY_START
  88.  
  89. /* Action number for EOF rule of a given start state. */
  90. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  91.  
  92. /* Special action meaning "start processing a new file". */
  93. #define YY_NEW_FILE yyrestart( yyin )
  94.  
  95. #define YY_END_OF_BUFFER_CHAR 0
  96.  
  97. /* Size of default input buffer. */
  98. #define YY_BUF_SIZE 16384
  99.  
  100. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  101.  
  102. extern int yyleng;
  103. extern FILE *yyin, *yyout;
  104.  
  105. #define EOB_ACT_CONTINUE_SCAN 0
  106. #define EOB_ACT_END_OF_FILE 1
  107. #define EOB_ACT_LAST_MATCH 2
  108.  
  109. /* The funky do-while in the following #define is used to turn the definition
  110.  * int a single C statement (which needs a semi-colon terminator).  This
  111.  * avoids problems with code like:
  112.  *
  113.  *     if ( condition_holds )
  114.  *        yyless( 5 );
  115.  *    else
  116.  *        do_something_else();
  117.  *
  118.  * Prior to using the do-while the compiler would get upset at the
  119.  * "else" because it interpreted the "if" statement as being all
  120.  * done when it reached the ';' after the yyless() call.
  121.  */
  122.  
  123. /* Return all but the first 'n' matched characters back to the input stream. */
  124.  
  125. #define yyless(n) \
  126.     do \
  127.         { \
  128.         /* Undo effects of setting up yytext. */ \
  129.         *yy_cp = yy_hold_char; \
  130.         yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
  131.         YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  132.         } \
  133.     while ( 0 )
  134.  
  135. #define unput(c) yyunput( c, yytext_ptr )
  136.  
  137. /* The following is because we cannot portably get our hands on size_t
  138.  * (without autoconf's help, which isn't available because we want
  139.  * flex-generated scanners to compile on their own).
  140.  */
  141. typedef unsigned int yy_size_t;
  142.  
  143.  
  144. struct yy_buffer_state
  145.     {
  146.     FILE *yy_input_file;
  147.  
  148.     char *yy_ch_buf;        /* input buffer */
  149.     char *yy_buf_pos;        /* current position in input buffer */
  150.  
  151.     /* Size of input buffer in bytes, not including room for EOB
  152.      * characters.
  153.      */
  154.     yy_size_t yy_buf_size;
  155.  
  156.     /* Number of characters read into yy_ch_buf, not including EOB
  157.      * characters.
  158.      */
  159.     int yy_n_chars;
  160.  
  161.     /* Whether we "own" the buffer - i.e., we know we created it,
  162.      * and can realloc() it to grow it, and should free() it to
  163.      * delete it.
  164.      */
  165.     int yy_is_our_buffer;
  166.  
  167.     /* Whether this is an "interactive" input source; if so, and
  168.      * if we're using stdio for input, then we want to use getc()
  169.      * instead of fread(), to make sure we stop fetching input after
  170.      * each newline.
  171.      */
  172.     int yy_is_interactive;
  173.  
  174.     /* Whether we're considered to be at the beginning of a line.
  175.      * If so, '^' rules will be active on the next match, otherwise
  176.      * not.
  177.      */
  178.     int yy_at_bol;
  179.  
  180.     /* Whether to try to fill the input buffer when we reach the
  181.      * end of it.
  182.      */
  183.     int yy_fill_buffer;
  184.  
  185.     int yy_buffer_status;
  186. #define YY_BUFFER_NEW 0
  187. #define YY_BUFFER_NORMAL 1
  188.     /* When an EOF's been seen but there's still some text to process
  189.      * then we mark the buffer as YY_EOF_PENDING, to indicate that we
  190.      * shouldn't try reading from the input source any more.  We might
  191.      * still have a bunch of tokens to match, though, because of
  192.      * possible backing-up.
  193.      *
  194.      * When we actually see the EOF, we change the status to "new"
  195.      * (via yyrestart()), so that the user can continue scanning by
  196.      * just pointing yyin at a new input file.
  197.      */
  198. #define YY_BUFFER_EOF_PENDING 2
  199.     };
  200.  
  201. static YY_BUFFER_STATE yy_current_buffer = 0;
  202.  
  203. /* We provide macros for accessing buffer states in case in the
  204.  * future we want to put the buffer states in a more general
  205.  * "scanner state".
  206.  */
  207. #define YY_CURRENT_BUFFER yy_current_buffer
  208.  
  209.  
  210. /* yy_hold_char holds the character lost when yytext is formed. */
  211. static char yy_hold_char;
  212.  
  213. static int yy_n_chars;        /* number of characters read into yy_ch_buf */
  214.  
  215.  
  216. int yyleng;
  217.  
  218. /* Points to current character in buffer. */
  219. static char *yy_c_buf_p = (char *) 0;
  220. static int yy_init = 1;        /* whether we need to initialize */
  221. static int yy_start = 0;    /* start state number */
  222.  
  223. /* Flag which is used to allow yywrap()'s to do buffer switches
  224.  * instead of setting up a fresh yyin.  A bit of a hack ...
  225.  */
  226. static int yy_did_buffer_switch_on_eof;
  227.  
  228. void yyrestart YY_PROTO(( FILE *input_file ));
  229.  
  230. void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
  231. void yy_load_buffer_state YY_PROTO(( void ));
  232. YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
  233. void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  234. void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
  235. void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  236. #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
  237.  
  238. YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
  239. YY_BUFFER_STATE yy_scan_string YY_PROTO(( const char *str ));
  240. YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( const char *bytes, int len ));
  241.  
  242. static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
  243. static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
  244. static void yy_flex_free YY_PROTO(( void * ));
  245.  
  246. #define yy_new_buffer yy_create_buffer
  247.  
  248. #define yy_set_interactive(is_interactive) \
  249.     { \
  250.     if ( ! yy_current_buffer ) \
  251.         yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  252.     yy_current_buffer->yy_is_interactive = is_interactive; \
  253.     }
  254.  
  255. #define yy_set_bol(at_bol) \
  256.     { \
  257.     if ( ! yy_current_buffer ) \
  258.         yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  259.     yy_current_buffer->yy_at_bol = at_bol; \
  260.     }
  261.  
  262. #define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
  263.  
  264. typedef unsigned char YY_CHAR;
  265. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  266. typedef int yy_state_type;
  267. extern char *yytext;
  268. #define yytext_ptr yytext
  269.  
  270. #ifndef YY_SKIP_YYWRAP
  271. #ifdef __cplusplus
  272. extern "C" int yywrap YY_PROTO(( void ));
  273. #else
  274. extern int yywrap YY_PROTO(( void ));
  275. #endif
  276. #endif
  277.  
  278. #ifndef YY_NO_UNPUT
  279. static void yyunput YY_PROTO(( int c, char *buf_ptr ));
  280. #endif
  281.  
  282. #ifndef yytext_ptr
  283. static void yy_flex_strncpy YY_PROTO(( char *, const char *, int ));
  284. #endif
  285.  
  286. #ifndef YY_NO_INPUT
  287. #ifdef __cplusplus
  288. static int yyinput YY_PROTO(( void ));
  289. #else
  290. static int input YY_PROTO(( void ));
  291. #endif
  292. #endif
  293.  
  294. static yy_state_type yy_get_previous_state YY_PROTO(( void ));
  295. static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
  296. static int yy_get_next_buffer YY_PROTO(( void ));
  297. static void yy_fatal_error YY_PROTO(( const char msg[] ));
  298.  
  299. /* Done after the current pattern has been matched and before the
  300.  * corresponding action - sets up yytext.
  301.  */
  302. #define YY_DO_BEFORE_ACTION \
  303.     yytext_ptr = yy_bp; \
  304.     yyleng = (int) (yy_cp - yy_bp); \
  305.     yy_hold_char = *yy_cp; \
  306.     *yy_cp = '\0'; \
  307.     yy_c_buf_p = yy_cp;
  308.  
  309. #define YY_NUM_RULES 165
  310. #define YY_END_OF_BUFFER 166
  311. static const short int yy_accept[769] =
  312.     {   0,
  313.         0,    0,    0,    0,   87,   87,  163,  163,    0,    0,
  314.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  315.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  316.         0,    0,    0,    0,    0,    0,    0,    0,  166,  164,
  317.         7,   18,  164,   16,    1,   17,  164,  164,  164,  164,
  318.        15,  108,  100,  101,  108,   93,  108,  107,  108,  108,
  319.       108,  107,   99,   89,  108,  108,   91,   92,   87,   88,
  320.        87,   86,   85,   86,   86,  163,  163,   28,   29,   28,
  321.        28,   28,   28,   28,   28,   31,   30,   32,   31,  113,
  322.       109,  110,  112,  114,  141,  142,  141,  139,  138,  140,
  323.  
  324.       115,  117,  115,  116,  115,  120,  120,  120,  120,  122,
  325.       124,  122,  122,  122,  122,  123,  151,  155,  151,  154,
  326.       156,  156,  152,  152,  152,  149,  150,  164,   82,  164,
  327.        21,   22,   21,   20,  157,  159,  157,  160,  161,  147,
  328.       147,  148,  147,  147,  147,  147,  147,  147,  147,   81,
  329.        34,   33,   81,   81,   81,   81,   35,   81,   81,   81,
  330.        81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
  331.        81,   81,   81,   81,   81,   81,   26,   23,   26,   24,
  332.         7,   18,    0,   16,    1,   17,    0,    0,    0,   14,
  333.         8,    0,    0,    0,    0,    4,    5,    0,    2,   15,
  334.  
  335.       100,  101,    0,    0,    0,   95,    0,    0,  105,  105,
  336.         0,  162,  162,  162,   94,    0,   99,   89,    0,    0,
  337.         0,   91,   92,  104,   90,    0,   87,   88,   86,   85,
  338.        85,   83,   84,  163,  163,   28,   29,   28,   28,   28,
  339.        28,   31,   30,   32,  111,  112,  142,  138,  117,    0,
  340.       118,  119,  124,  121,  151,  155,    0,  153,    0,  144,
  341.       152,  152,  152,    0,   82,    0,   21,   22,   21,   19,
  342.       157,  159,  158,  147,  147,  147,  148,  143,  147,  147,
  343.       147,   34,   33,    0,   80,    0,    0,   81,   81,   81,
  344.        81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
  345.  
  346.        81,   81,   81,   36,   81,   81,   81,   81,   81,   81,
  347.        81,   81,   81,   81,    0,   25,   24,    0,   14,    8,
  348.         0,   12,    0,    0,    0,    0,    0,    4,    5,    0,
  349.         6,    0,   96,    0,   97,    0,    0,  105,  105,    0,
  350.       105,  105,  105,  162,  162,    0,  106,   90,   98,    0,
  351.       104,    0,   83,   84,   28,   28,   28,   27,   28,    0,
  352.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  353.         0,  152,  152,  143,  143,  147,  147,    0,    0,   81,
  354.        81,   81,   81,   81,   44,   81,   81,   81,   49,   81,
  355.        81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
  356.  
  357.        81,   81,   81,   81,   81,   81,   81,   81,    0,   81,
  358.        81,   81,   81,    0,    0,    0,   12,    0,    0,    0,
  359.         0,    0,    0,    4,    5,    0,  105,  105,  105,  105,
  360.       105,  105,  162,    0,    0,   28,   28,    0,    0,    0,
  361.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  362.       152,  152,  147,  147,   37,   38,   81,   81,   81,   81,
  363.        81,   81,   81,   81,   50,   51,   81,   81,   81,   55,
  364.        81,   81,   81,   81,   81,   81,   60,   81,   81,   81,
  365.        81,   81,   81,   67,    0,    0,    0,   81,   81,   81,
  366.        81,    0,   13,    0,    0,    0,    0,    0,    0,  105,
  367.  
  368.       105,  105,  105,  105,  105,    0,    0,   28,   28,  137,
  369.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  370.         0,    0,  152,  152,  147,  147,   39,   81,   41,   81,
  371.        43,   81,   81,   81,   47,   81,   52,   81,   81,   81,
  372.        81,   81,   81,   81,   81,   81,   62,   81,   81,   65,
  373.        81,    0,    0,    0,    0,   81,   81,   81,   81,    3,
  374.         0,    0,    0,    0,  105,  105,  105,    0,    0,   28,
  375.        28,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  376.         0,    0,    0,  145,  146,  145,  146,   81,   42,   81,
  377.        81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
  378.  
  379.        81,   78,   61,   81,   64,   81,    0,    0,    0,    0,
  380.        81,   81,   69,   70,    0,   10,    0,   11,    0,  103,
  381.         0,  102,    0,    0,    0,    0,    0,    0,    0,    0,
  382.         0,    0,    0,    0,   81,   81,   81,   45,   81,   48,
  383.        81,   81,   81,   81,   77,   81,   59,   63,   66,    0,
  384.         0,    0,    0,   79,   81,    0,  102,    0,    0,    0,
  385.         0,    0,    0,    0,    0,    0,    0,    0,    0,   81,
  386.        81,   81,   46,   81,   81,   56,   81,   81,    0,    0,
  387.         0,    0,   68,    0,    9,    0,  125,  126,  127,  128,
  388.       129,  130,  131,  132,  133,  134,  135,    0,   81,   81,
  389.  
  390.        81,   81,   81,   81,   81,    0,    0,    0,    0,    0,
  391.       136,   81,   81,   81,   81,   54,   81,   81,    0,    0,
  392.         0,    0,    0,    0,   81,   81,   81,   53,   81,   58,
  393.         0,    0,    0,    0,    0,    0,   81,   81,   81,   81,
  394.        72,    0,    0,    0,    0,   73,   81,   81,   81,   81,
  395.        71,    0,   75,    0,   81,   81,   81,   74,   76,   81,
  396.        81,   81,   81,   81,   81,   57,   40,    0
  397.     } ;
  398.  
  399. static const int yy_ec[256] =
  400.     {   0,
  401.         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
  402.         1,    1,    4,    1,    1,    1,    1,    1,    1,    1,
  403.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  404.         1,    2,    1,    5,    6,    7,    8,    1,    9,   10,
  405.        10,   11,   12,   13,   14,   10,   15,   16,   16,   16,
  406.        16,   16,   16,   16,   17,   18,   16,   19,    1,   20,
  407.        21,   22,   10,    1,   30,   31,   32,   33,   34,   35,
  408.        36,   37,   38,   39,   40,   41,   42,   43,   44,   45,
  409.        46,   47,   48,   49,   50,   51,   52,   53,   54,   46,
  410.        25,   26,   27,   28,   29,    1,   30,   31,   32,   33,
  411.  
  412.        34,   35,   36,   37,   38,   39,   40,   41,   42,   43,
  413.        44,   45,   46,   47,   48,   49,   50,   51,   52,   53,
  414.        54,   46,   55,   56,   57,    1,    1,    1,    1,    1,
  415.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  416.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  417.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  418.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  419.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  420.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  421.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  422.  
  423.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  424.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  425.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  426.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  427.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  428.         1,    1,    1,    1,    1
  429.     } ;
  430.  
  431. static const int yy_meta[58] =
  432.     {   0,
  433.         1,    1,    2,    1,    3,    1,    1,    1,    4,    1,
  434.         5,    6,    1,    7,    4,    8,    8,    8,    1,    1,
  435.         1,    1,    9,   10,    1,   11,   12,    1,   13,   14,
  436.        14,   14,   14,   14,   14,   15,   15,   15,   15,   15,
  437.        15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
  438.        15,   15,   15,   15,    4,    1,   16
  439.     } ;
  440.  
  441. static const short int yy_base[857] =
  442.     {   0,
  443.         0,   57,  113,  169,  118,  127, 2676, 2675,  226, 2669,
  444.       138,  141,  283,    0, 2648, 2647,  133,  144,  149,  160,
  445.       179,  184,  188,  338,  365,    0,  123,  152,  155,  195,
  446.       420,  423,  449,    0,  506,    0,  340,  343, 2674, 2680,
  447.       214, 2680, 2670,    0,  217, 2680, 2669,  181,  556, 2660,
  448.         0, 2680,  563, 2680, 2667, 2680,  347, 2680, 2649,  328,
  449.       552,  413,  574, 2680, 2665,  565, 2647, 2680,    0, 2680,
  450.      2663,    0, 2663, 2661,   77, 2660, 2680,    0, 2680, 2659,
  451.      2680,    0, 2627, 2606, 2602,    0, 2656, 2680, 2654, 2680,
  452.      2680, 2628,    0, 2680, 2680, 2680, 2652, 2680,  416, 2680,
  453.  
  454.      2680, 2680, 2651, 2680,  563, 2680, 2634,  575,  421, 2680,
  455.      2680, 2649,    0, 2632,  590, 2680,    0, 2680, 2647, 2680,
  456.       586, 2638,    0, 2614, 2593, 2680, 2680,  433, 2680,  435,
  457.       437, 2680,  439, 2631,    0, 2680, 2642, 2680,    0,    0,
  458.       613, 2680, 2641, 2586, 2680, 2631,    0, 2607, 2586, 2680,
  459.      2637, 2680, 2635, 2632, 2605, 2604, 2680,  576, 2604,  155,
  460.      2599, 2600,  158,    0, 2588, 2596,  166,  159, 2579,  540,
  461.      2594, 2578, 2583, 2591, 2594, 2569, 2680, 2680, 2617,  608,
  462.       629, 2680, 2618,    0,  632, 2680, 2617,  573, 2581,    0,
  463.         0,  635,  638,  642,  645,    0,    0,  441, 2680,    0,
  464.  
  465.       662, 2680, 2615, 2562,  594, 2680, 2613, 2581,  642,  650,
  466.       655, 2680,  661,    0, 2680, 2557,  682, 2680, 2610, 2557,
  467.      2600, 2590, 2680,    0, 2680, 2575,    0, 2680,    0,    0,
  468.      2606,    0,    0, 2604, 2680,    0, 2680,    0, 2567, 2563,
  469.       738,    0, 2602, 2680, 2680,    0, 2680,  675, 2680,  766,
  470.      2680, 2680, 2680, 2680,    0, 2680,  601, 2680,    0, 2680,
  471.         0, 2564, 2560,  677, 2680,  691,  695, 2680,  697, 2680,
  472.         0, 2680, 2680,    0,  701, 2544, 2680,  819,    0, 2561,
  473.      2557, 2596, 2680, 2592, 2680, 2558, 2557,    0,  636, 2547,
  474.       664, 2581, 2544,  587, 2543, 2542, 2548,  662, 2535, 2549,
  475.  
  476.      2537,    0, 2534, 2680, 2535, 2536, 2544, 2547,  675,  314,
  477.      2535, 2532, 2531,  683, 2572, 2680,  703, 2533,    0,    0,
  478.       875, 2680, 2572,  878, 2527, 2524, 2534,    0,    0,  713,
  479.      2680,  719, 2680,  723, 2680,  725, 2527,  705,  784,  870,
  480.       923,  882,  965,  716,    0, 2513, 2680, 2680, 2680, 2535,
  481.         0, 2524,    0,    0, 2533, 2522,    0, 2680,    0, 1000,
  482.      2546,  781,  864,  866,  865,  566,  870,  871,  638,  966,
  483.       782, 2530, 2519,    0, 1057, 2528, 2517, 2511, 2510, 2522,
  484.      2527, 2526, 2515, 2522,    0, 2519, 2502, 2521,    0, 2501,
  485.      2508, 2498, 2513, 2532, 2502, 2514, 2509, 2507, 2506, 2497,
  486.  
  487.      2504, 2505, 2503, 2504,  768, 2485, 2503, 2490,  867, 2491,
  488.      2493, 2486, 2482, 2494,  733, 1027, 2680,  801, 1030,  990,
  489.      2497, 2488, 2482,    0,    0, 2489, 1092, 1024, 1131, 2504,
  490.      1070, 1151, 2680, 2478, 2486, 2488, 2472,    0, 2491, 1049,
  491.       553,  901,  883,  887,  159,  965, 1017,  892, 1035, 1062,
  492.      2485, 2469, 2483, 2467, 2680, 2680, 2470, 2458, 2457, 2460,
  493.      2472, 1076, 2472, 2457,    0,    0, 2457, 2458, 2472,    0,
  494.      2489, 2455, 2463, 2486, 2450, 2460,    0, 2465, 2456, 2452,
  495.      2444, 2444, 2448,    0,  860, 2459, 2446, 2459, 2445, 2440,
  496.      2456, 2483, 2680,  814, 1035, 2430, 2439, 2433, 2459, 2461,
  497.  
  498.      1081, 1171, 1026,  961,  998, 2444, 2456, 2428, 2442, 2680,
  499.      1070, 1072, 1132, 1074, 1133, 1131, 1084, 1134,  894, 1138,
  500.      1085, 1136, 2426, 2440, 2424, 2438,    0, 2423,    0, 2425,
  501.         0, 1142, 2419, 2434,    0, 2426,    0, 2436, 2421, 2430,
  502.      2403, 2370, 2363, 2370, 2350, 2353,    0, 2363, 2345,    0,
  503.      2336, 2302, 2298, 2308, 2292, 2254, 2252, 2236, 2221, 2263,
  504.      1098, 2221, 2227, 2222, 1133, 1153, 1166, 2217, 2216,    0,
  505.         0, 1154, 1178,  610, 1174, 1176, 1179, 1180, 1181, 1188,
  506.      1190, 1191, 1193,    0,    0,    0,    0, 2218,    0, 2188,
  507.      2196, 2186, 2178, 2173, 2187, 2170, 2172, 2165, 2156, 2132,
  508.  
  509.      2118,    0,    0, 2097,    0, 2108, 2112, 2099, 2092, 2105,
  510.      2082, 2086,    0,    0, 1210, 2680, 1214, 2680, 2081, 2680,
  511.      2100, 2680, 2102, 2083, 2078, 2077, 2071, 2070, 2069, 2066,
  512.      2065, 2061, 2058, 1192, 2007, 1981, 1970,    0, 1949,    0,
  513.      1932, 1920, 1911, 1915,    0, 1907,    0,    0,    0, 1903,
  514.      1921, 1920, 1894,    0, 1888, 1216, 2680, 1868, 1867, 1861,
  515.      1860, 1843, 1827, 1811, 1807, 1806, 1805, 1802, 1793, 1764,
  516.      1772, 1752,    0, 1761, 1768,    0, 1746, 1750, 1741, 1739,
  517.      1191, 1722,    0, 1225, 2680, 1229, 2680, 2680, 2680, 2680,
  518.      2680, 2680, 2680, 2680, 2680, 2680, 2680, 1737, 1707, 1712,
  519.  
  520.      1704, 1667, 1668, 1664, 1647, 1663, 1639, 1186, 1638, 1656,
  521.      2680, 1646, 1622, 1605, 1615,    0, 1601, 1580, 1575, 1593,
  522.      1582, 1567, 1568, 1563, 1564, 1569, 1566,    0, 1542,    0,
  523.      1522, 1491, 1500, 1500, 1478, 1466, 1465, 1445, 1420, 1438,
  524.      2680, 1192, 1189, 1173, 1113, 2680, 1078, 1070, 1071,  986,
  525.      2680,  942, 2680,  865,  764,  757,  668, 2680, 2680,  666,
  526.       413,  311,  304,  189,   85,    0,    0, 2680, 1241, 1257,
  527.      1273, 1289, 1305, 1321, 1337, 1353, 1369, 1385, 1401, 1417,
  528.      1433, 1449, 1459, 1474, 1483, 1498, 1514, 1523, 1538, 1554,
  529.      1570, 1586, 1602, 1612, 1627, 1637, 1652, 1668, 1684, 1696,
  530.  
  531.      1706, 1721, 1737, 1753, 1769, 1785, 1795, 1810, 1821, 1220,
  532.      1836, 1852, 1868, 1876, 1883, 1898, 1914, 1930, 1939, 1947,
  533.      1963, 1979, 1995, 2011, 2027, 2043, 2059, 2075, 2085, 2100,
  534.      2110, 2117, 2132, 2144, 2154, 2169, 2185, 2201, 2217, 2227,
  535.      2242, 2253, 2268, 2284, 2300, 2316, 2326, 2335, 2350, 2366,
  536.      2382, 2391, 2399, 2415, 2431, 2447
  537.     } ;
  538.  
  539. static const short int yy_def[857] =
  540.     {   0,
  541.       768,  768,  769,  769,  770,  771,  772,  772,  768,    9,
  542.       773,  773,  768,   13,  774,  774,  775,  775,  776,  776,
  543.       777,  777,  778,  778,  768,   25,  779,  779,  780,  780,
  544.       781,  781,  768,   33,  768,   35,  782,  782,  768,  768,
  545.       768,  768,  768,  783,  768,  768,  768,  768,  784,  768,
  546.       785,  768,  768,  768,  768,  768,  768,  768,  768,  786,
  547.       787,  788,  768,  768,  768,  768,  768,  768,  789,  768,
  548.       789,  790,  791,  790,  790,  792,  768,  793,  768,  793,
  549.       768,  794,  794,  794,  793,  795,  768,  768,  795,  768,
  550.       768,  768,  796,  768,  768,  768,  768,  768,  768,  768,
  551.  
  552.       768,  768,  768,  768,  787,  768,  768,  787,  797,  768,
  553.       768,  768,  798,  768,  787,  768,  799,  768,  799,  768,
  554.       800,  768,  801,  801,  801,  768,  768,  802,  768,  802,
  555.       803,  768,  803,  768,  804,  768,  804,  768,  805,  806,
  556.       806,  768,  806,  806,  768,  806,  807,  807,  807,  768,
  557.       768,  768,  768,  808,  768,  768,  768,  809,  809,  809,
  558.       809,  809,  809,  809,  809,  809,  809,  810,  809,  809,
  559.       809,  809,  809,  809,  809,  809,  768,  768,  811,  768,
  560.       768,  768,  768,  783,  768,  768,  768,  768,  768,  812,
  561.       813,  768,  768,  768,  768,  814,  815,  816,  768,  785,
  562.  
  563.       768,  768,  768,  768,  817,  768,  768,  768,  818,  818,
  564.       786,  768,  768,  819,  768,  820,  768,  768,  768,  768,
  565.       768,  768,  768,  821,  768,  768,  822,  768,  823,  824,
  566.       824,  825,  826,  827,  768,  828,  768,  829,  829,  829,
  567.       768,  830,  768,  768,  768,  831,  768,  768,  768,  832,
  568.       768,  768,  768,  768,  833,  768,  834,  768,  834,  768,
  569.       835,  835,  835,  836,  768,  836,  837,  768,  837,  768,
  570.       838,  768,  768,  839,  839,  839,  768,  768,  840,  840,
  571.       840,  768,  768,  841,  768,  768,  768,  842,  842,  842,
  572.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  573.  
  574.       842,  842,  842,  768,  842,  842,  842,  842,  842,  842,
  575.       842,  842,  842,  842,  843,  768,  768,  768,  844,  845,
  576.       846,  768,  768,  768,  768,  768,  768,  847,  848,  849,
  577.       768,  849,  768,  850,  768,  850,  768,  851,  851,  851,
  578.       768,  851,  851,  768,  852,  853,  768,  768,  768,  768,
  579.       854,  768,  825,  826,  829,  829,  241,  768,  241,  241,
  580.       832,  832,  832,  832,  832,  832,  832,  832,  832,  832,
  581.       832,  835,  835,  278,  278,  840,  840,  768,  768,  842,
  582.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  583.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  584.  
  585.       842,  842,  842,  842,  842,  842,  842,  842,  768,  842,
  586.       842,  842,  842,  768,  846,  846,  768,  846,  846,  768,
  587.       768,  768,  768,  847,  848,  768,  341,  851,  343,  341,
  588.       851,  343,  768,  768,  768,  829,  829,  360,  768,  832,
  589.       832,  832,  832,  832,  832,  832,  832,  832,  832,  832,
  590.       835,  835,  840,  840,  768,  768,  842,  842,  842,  842,
  591.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  592.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  593.       842,  842,  842,  842,  768,  768,  768,  842,  842,  842,
  594.       842,  768,  768,  846,  846,  768,  768,  768,  768,  427,
  595.  
  596.       851,  343,  851,  851,  851,  768,  768,  829,  829,  768,
  597.       832,  832,  832,  832,  832,  832,  832,  832,  832,  832,
  598.       832,  832,  835,  835,  840,  840,  842,  842,  842,  842,
  599.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  600.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  601.       842,  768,  768,  768,  768,  842,  842,  842,  842,  768,
  602.       855,  768,  768,  768,  851,  851,  851,  768,  768,  829,
  603.       829,  832,  832,  832,  832,  832,  832,  832,  832,  832,
  604.       832,  832,  832,  835,  835,  840,  840,  842,  842,  842,
  605.       842,  842,  842,  842,  842,  842,  842,  842,  842,  842,
  606.  
  607.       842,  842,  842,  842,  842,  842,  768,  768,  768,  768,
  608.       842,  842,  842,  842,  855,  768,  855,  768,  768,  768,
  609.       768,  768,  832,  832,  832,  832,  832,  832,  832,  832,
  610.       832,  832,  832,  832,  842,  842,  842,  842,  842,  842,
  611.       842,  842,  842,  842,  842,  842,  842,  842,  842,  768,
  612.       768,  768,  768,  842,  842,  856,  768,  768,  768,  768,
  613.       768,  768,  768,  768,  768,  768,  768,  768,  832,  842,
  614.       842,  842,  842,  842,  842,  842,  842,  842,  768,  768,
  615.       768,  768,  842,  856,  768,  856,  768,  768,  768,  768,
  616.       768,  768,  768,  768,  768,  768,  768,  768,  842,  842,
  617.  
  618.       842,  842,  842,  842,  842,  768,  768,  768,  768,  768,
  619.       768,  842,  842,  842,  842,  842,  842,  842,  768,  768,
  620.       768,  768,  768,  768,  842,  842,  842,  842,  842,  842,
  621.       768,  768,  768,  768,  768,  768,  842,  842,  842,  842,
  622.       768,  768,  768,  768,  768,  768,  842,  842,  842,  842,
  623.       768,  768,  768,  768,  842,  842,  842,  768,  768,  842,
  624.       842,  842,  842,  842,  842,  842,  842,    0,  768,  768,
  625.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  626.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  627.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  628.  
  629.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  630.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  631.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  632.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  633.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  634.       768,  768,  768,  768,  768,  768
  635.     } ;
  636.  
  637. static const short int yy_nxt[2738] =
  638.     {   0,
  639.        40,   41,   42,   43,   40,   40,   40,   40,   40,   40,
  640.        40,   40,   40,   40,   40,   40,   40,   40,   40,   40,
  641.        40,   40,   44,   44,   40,   40,   40,   40,   44,   44,
  642.        44,   44,   44,   44,   44,   44,   44,   44,   44,   44,
  643.        44,   44,   44,   44,   44,   44,   44,   44,   44,   44,
  644.        44,   44,   44,   44,   40,   40,   40,   40,   45,   46,
  645.        47,   40,   48,   40,   49,   40,   40,   40,   40,   40,
  646.        40,   50,   40,   40,   40,   40,   40,   40,   40,   51,
  647.        51,   40,   40,   40,   40,   51,   51,   51,   51,   51,
  648.        51,   51,   51,   51,   51,   51,   51,   51,   51,   51,
  649.  
  650.        51,   51,   51,   51,   51,   51,   51,   51,   51,   51,
  651.        51,   40,   40,   40,   53,   54,   55,   56,  767,   57,
  652.        70,   71,   58,   58,   58,  129,  130,   58,   73,   70,
  653.        74,  232,   59,  233,   75,   96,   97,   60,   61,   87,
  654.        88,   89,   87,   88,   89,   98,   96,   97,   99,   99,
  655.        99,  102,  103,  104,  129,  130,   98,  132,  133,   99,
  656.        99,   99,  102,  103,  104,  134,  292,   62,   58,   58,
  657.        63,   64,   65,   56,  105,   57,   66,  439,   58,   58,
  658.        58,   40,  188,   58,  293,  105,   40,  296,   67,  100,
  659.       111,  112,  303,   60,   61,  300,   68,  132,  133,  301,
  660.  
  661.       100,  113,  304,  107,  108,  134,  109,  297,  107,  108,
  662.       517,  109,  114,  115,  116,  181,  182,  183,  185,  186,
  663.       187,  189,  766,   62,   58,   58,   78,   78,   79,   80,
  664.        78,   78,   78,   78,   78,   78,   81,   78,   78,   78,
  665.        78,   78,   78,   78,   78,   78,   78,   78,   82,   82,
  666.        78,   78,   78,   78,   82,   82,   82,   82,   82,   82,
  667.        82,   82,   82,   82,   82,   82,   82,   82,   82,   82,
  668.        82,   82,   83,   82,   82,   82,   82,   82,   82,   84,
  669.        78,   78,   78,   90,   90,   40,   90,   90,   90,   90,
  670.        90,   90,   90,   91,   90,   91,   90,   90,   90,   90,
  671.  
  672.        90,   90,   90,   90,   92,   93,   93,   90,   90,   90,
  673.        90,   93,   93,   93,   93,   93,   93,   93,   93,   93,
  674.        93,   93,   93,   93,   93,   93,   93,   93,   93,   93,
  675.        93,   93,   93,   93,   93,   93,   93,   90,   90,   90,
  676.       111,  112,  178,  404,  179,  178,  405,  179,  206,  206,
  677.       207,  113,  210,  211,  765,  180,  180,  180,  180,  180,
  678.       180,  764,  114,  115,  116,  117,  117,  118,  119,  120,
  679.       117,  117,  117,  121,  117,  117,  117,  117,  117,  122,
  680.       117,  117,  117,  117,  117,  117,  117,  123,  123,  117,
  681.       117,  117,  117,  123,  123,  123,  123,  123,  123,  123,
  682.  
  683.       123,  123,  123,  123,  123,  123,  123,  123,  123,  123,
  684.       123,  124,  123,  123,  123,  123,  123,  123,  125,  126,
  685.       117,  127,  136,  137,  138,  136,  137,  138,  215,  215,
  686.       215,  248,  248,  248,  252,  265,  266,  265,  266,  268,
  687.       269,  268,  269,  331,  332,  139,  673,  252,  139,  140,
  688.       141,  142,  143,  140,  140,  140,  144,  140,  140,  145,
  689.       140,  140,  140,  146,  140,  140,  140,  140,  140,  140,
  690.       140,  147,  147,  140,  140,  140,  140,  147,  147,  147,
  691.       147,  147,  147,  147,  147,  147,  147,  147,  147,  147,
  692.       147,  147,  147,  147,  147,  148,  147,  147,  147,  147,
  693.  
  694.       147,  147,  149,  140,  140,  140,  150,  151,  152,  153,
  695.       154,  150,  150,  150,  150,  150,  150,  150,  150,  150,
  696.       150,  150,  155,  156,  150,  150,  157,  150,  150,  150,
  697.       150,  150,  150,  150,  150,  158,  159,  160,  161,  162,
  698.       163,  164,  164,  165,  164,  164,  166,  167,  168,  169,
  699.       170,  164,  171,  172,  164,  173,  174,  175,  164,  176,
  700.       150,  150,  150,  191,  201,  202,  203,  213,  213,  213,
  701.       204,  439,  224,  306,  188,  217,  218,  219,  213,  213,
  702.       213,  220,  513,  307,  439,  192,  308,  193,  221,  193,
  703.       213,  213,  213,  222,  258,  193,  335,  336,  193,  194,
  704.  
  705.       195,  223,  193,  196,  214,  213,  213,  213,  197,  258,
  706.       198,  259,  444,  189,  275,  214,  289,  387,  205,  225,
  707.       276,  388,  290,  317,  317,  317,  259,  214,  439,  205,
  708.       181,  182,  183,  185,  186,  187,  321,  322,  323,  321,
  709.       322,  323,  214,  321,  322,  323,  321,  322,  323,  625,
  710.       324,  324,  324,  324,  324,  324,  439,  324,  324,  324,
  711.       324,  324,  324,  201,  202,  203,  339,  340,  341,  204,
  712.       342,  342,  342,  380,  339,  340,  344,  344,  344,  265,
  713.       266,  325,  448,  217,  218,  219,  326,  381,  327,  220,
  714.       248,  248,  248,  265,  266,  383,  221,  268,  269,  268,
  715.  
  716.       269,  222,  275,  763,  402,  762,  392,  343,  276,  223,
  717.       393,  409,  384,  403,  410,  331,  332,  205,  317,  317,
  718.       317,  331,  332,  411,  412,  335,  336,  335,  336,  339,
  719.       340,  212,  212,  212,  413,  493,  494,  205,  357,  357,
  720.       358,  359,  357,  357,  357,  357,  357,  357,  360,  357,
  721.       357,  357,  357,  357,  357,  357,  357,  357,  357,  357,
  722.       360,  360,  357,  357,  357,  357,  360,  360,  360,  360,
  723.       360,  360,  360,  360,  360,  360,  360,  360,  360,  360,
  724.       360,  360,  360,  360,  360,  360,  360,  360,  360,  360,
  725.       360,  360,  357,  357,  357,  362,  363,  364,  365,  439,
  726.  
  727.       439,  366,  427,  417,  494,  480,  367,  761,  339,  340,
  728.       368,  481,  760,  369,  450,  370,  493,  494,  371,  374,
  729.       374,  440,  374,  374,  374,  374,  374,  374,  374,  375,
  730.       374,  374,  374,  374,  374,  374,  374,  374,  374,  374,
  731.       374,  375,  375,  374,  374,  374,  374,  375,  375,  375,
  732.       375,  375,  375,  375,  375,  375,  375,  375,  375,  375,
  733.       375,  375,  375,  375,  375,  375,  375,  375,  375,  375,
  734.       375,  375,  375,  374,  374,  374,  416,  417,  418,  420,
  735.       322,  323,  439,  439,  439,  428,  428,  428,  439,  439,
  736.       419,  419,  419,  324,  324,  324,  338,  431,  431,  431,
  737.  
  738.       759,  439,  443,  552,  441,  439,  339,  340,  442,  553,
  739.       439,  485,  439,  445,  486,  487,  516,  446,  515,  439,
  740.       447,  520,  429,  338,  338,  580,  338,  338,  338,  338,
  741.       338,  338,  338,  338,  338,  338,  338,  338,  338,  338,
  742.       338,  338,  338,  338,  338,  430,  430,  339,  340,  514,
  743.       338,  338,  430,  430,  430,  430,  430,  430,  430,  430,
  744.       430,  430,  430,  430,  430,  430,  430,  430,  430,  430,
  745.       430,  430,  430,  430,  430,  430,  430,  338,  338,  338,
  746.       432,  432,  432,  439,  439,  339,  340,  432,  758,  339,
  747.       340,  420,  322,  323,  432,  432,  432,  432,  432,  432,
  748.  
  749.       360,  360,  518,  438,  360,  360,  360,  360,  360,  360,
  750.       449,  360,  360,  360,  360,  360,  360,  360,  360,  360,
  751.       360,  360,  339,  340,  360,  360,  360,  360,  416,  417,
  752.       418,  495,  417,  418,  757,  439,  495,  417,  418,  501,
  753.       501,  501,  419,  419,  419,  419,  419,  419,  339,  340,
  754.       339,  340,  209,  439,  360,  360,  360,  375,  375,  519,
  755.       375,  375,  375,  375,  375,  375,  375,  439,  375,  375,
  756.       375,  375,  375,  375,  375,  375,  375,  375,  375,  521,
  757.       439,  375,  375,  375,  375,  504,  504,  504,  439,  532,
  758.       439,  511,  439,  512,  339,  340,  566,  566,  566,  522,
  759.  
  760.       616,  617,  439,  439,  638,  339,  340,  756,  573,  755,
  761.       533,  375,  375,  375,  500,  500,  534,  578,  582,  572,
  762.       575,  500,  500,  500,  500,  500,  500,  500,  500,  500,
  763.       500,  500,  500,  500,  500,  500,  500,  500,  500,  500,
  764.       500,  500,  500,  500,  500,  500,  502,  502,  502,  439,
  765.       439,  439,  439,  502,  439,  754,  439,  339,  340,  338,
  766.       502,  502,  502,  502,  502,  502,  505,  505,  505,  581,
  767.       576,  583,  439,  505,  574,  577,  579,  339,  340,  590,
  768.       505,  505,  505,  505,  505,  505,  567,  567,  567,  591,
  769.       339,  340,  439,  567,  439,  623,  439,  439,  439,  439,
  770.  
  771.       567,  567,  567,  567,  567,  567,  439,  624,  439,  439,
  772.       439,  439,  616,  617,  626,  628,  616,  617,  685,  686,
  773.       753,  708,  752,  632,  627,  751,  629,  685,  686,  630,
  774.       634,  685,  686,  302,  302,  721,  631,  633,  709,  722,
  775.       669,   52,   52,   52,   52,   52,   52,   52,   52,   52,
  776.        52,   52,   52,   52,   52,   52,   52,   69,   69,   69,
  777.        69,   69,   69,   69,   69,   69,   69,   69,   69,   69,
  778.        69,   69,   69,   72,   72,   72,   72,   72,   72,   72,
  779.        72,   72,   72,   72,   72,   72,   72,   72,   72,   76,
  780.        76,   76,   76,   76,   76,   76,   76,   76,   76,   76,
  781.  
  782.        76,   76,   76,   76,   76,   86,   86,   86,   86,   86,
  783.        86,   86,   86,   86,   86,   86,   86,   86,   86,   86,
  784.        86,   40,   40,   40,   40,   40,   40,   40,   40,   40,
  785.        40,   40,   40,   40,   40,   40,   40,   95,   95,   95,
  786.        95,   95,   95,   95,   95,   95,   95,   95,   95,   95,
  787.        95,   95,   95,  101,  101,  101,  101,  101,  101,  101,
  788.       101,  101,  101,  101,  101,  101,  101,  101,  101,  106,
  789.       106,  106,  106,  106,  106,  106,  106,  106,  106,  106,
  790.       106,  106,  106,  106,  106,  110,  110,  110,  110,  110,
  791.       110,  110,  110,  110,  110,  110,  110,  110,  110,  110,
  792.  
  793.       110,  128,  128,  128,  128,  128,  128,  128,  128,  128,
  794.       128,  128,  128,  128,  128,  128,  128,  131,  131,  131,
  795.       131,  131,  131,  131,  131,  131,  131,  131,  131,  131,
  796.       131,  131,  131,  135,  135,  135,  135,  135,  135,  135,
  797.       135,  135,  135,  135,  135,  135,  135,  135,  135,  177,
  798.       177,  177,  177,  177,  177,  177,  177,  177,  177,  177,
  799.       177,  177,  177,  177,  177,  184,  184,  184,  184,  750,
  800.       749,  184,  184,  184,  190,  190,  190,  190,  190,  190,
  801.       190,  190,  190,  190,  190,  190,  190,  190,  190,  200,
  802.       200,  200,  200,  748,  747,  200,  200,  200,  209,  746,
  803.  
  804.       209,  209,  209,  209,  209,  209,  209,  209,  209,  209,
  805.       209,  209,  209,  209,  212,  745,  212,  212,  212,  212,
  806.       212,  212,  212,  212,  212,  212,  212,  212,  212,  212,
  807.       216,  216,  216,  744,  743,  216,  216,  216,  227,  742,
  808.       227,  227,  227,  227,  227,  227,  227,  227,  227,  227,
  809.       227,  227,  227,  227,  229,  741,  229,  229,  229,  229,
  810.       229,  229,  229,  229,  229,  229,  229,  229,  229,  229,
  811.       230,  740,  230,  230,  230,  230,  230,  230,  230,  230,
  812.       230,  230,  230,  230,  230,  230,  234,  234,  234,  234,
  813.       234,  234,  234,  234,  234,  234,  234,  234,  234,  234,
  814.  
  815.       234,  234,  236,  739,  236,  236,  738,  236,  236,  236,
  816.       737,  736,  236,  236,  735,  734,  733,  236,  238,  238,
  817.       238,  238,  732,  731,  238,  238,  238,  242,  730,  242,
  818.       242,  242,  242,  242,  242,  242,  242,  242,  242,  242,
  819.       242,  242,  242,  246,  246,  246,  246,  729,  728,  246,
  820.       246,  246,  251,  727,  251,  251,  251,  251,  251,  251,
  821.       251,  251,  251,  251,  251,  251,  251,  251,  254,  726,
  822.       254,  254,  254,  254,  254,  254,  254,  254,  254,  725,
  823.       254,  254,  254,  254,  255,  724,  723,  720,  255,  255,
  824.       255,  255,  719,  718,  255,  255,  257,  717,  257,  257,
  825.  
  826.       257,  257,  257,  257,  257,  257,  257,  257,  257,  257,
  827.       257,  257,  261,  261,  261,  261,  716,  715,  261,  261,
  828.       261,  264,  264,  264,  264,  264,  264,  264,  264,  264,
  829.       264,  264,  264,  264,  264,  264,  264,  267,  267,  267,
  830.       267,  714,  267,  267,  267,  267,  267,  267,  267,  267,
  831.       267,  267,  267,  271,  713,  712,  271,  271,  271,  271,
  832.       271,  271,  271,  711,  271,  271,  271,  271,  271,  273,
  833.       710,  273,  273,  273,  273,  273,  273,  273,  273,  273,
  834.       273,  273,  273,  273,  273,  274,  707,  274,  274,  706,
  835.       274,  274,  274,  705,  704,  274,  274,  703,  702,  701,
  836.  
  837.       274,  279,  279,  279,  279,  700,  699,  279,  279,  279,
  838.       284,  698,  284,  284,  284,  284,  284,  284,  284,  284,
  839.       284,  284,  284,  284,  284,  284,  288,  288,  697,  288,
  840.       288,  696,  695,  694,  288,  288,  315,  693,  315,  315,
  841.       315,  315,  315,  315,  315,  315,  315,  315,  315,  315,
  842.       315,  315,  319,  692,  319,  319,  319,  319,  319,  319,
  843.       319,  319,  319,  319,  319,  319,  319,  319,  320,  691,
  844.       320,  320,  320,  320,  320,  320,  320,  320,  320,  320,
  845.       320,  320,  320,  320,  328,  328,  690,  689,  328,  328,
  846.       328,  329,  329,  688,  687,  329,  329,  329,  330,  330,
  847.  
  848.       330,  330,  330,  330,  330,  330,  330,  330,  330,  330,
  849.       330,  330,  330,  330,  334,  334,  334,  334,  334,  334,
  850.       334,  334,  334,  334,  334,  334,  334,  334,  334,  334,
  851.       338,  683,  338,  338,  338,  338,  338,  338,  338,  338,
  852.       338,  682,  338,  338,  338,  338,  345,  345,  681,  680,
  853.       679,  678,  345,  346,  346,  346,  346,  677,  676,  346,
  854.       346,  346,  346,  351,  675,  351,  351,  351,  351,  351,
  855.       351,  351,  351,  351,  351,  351,  351,  351,  351,  227,
  856.       674,  227,  227,  227,  227,  227,  227,  227,  227,  227,
  857.       227,  227,  227,  227,  227,  229,  673,  229,  229,  229,
  858.  
  859.       229,  229,  229,  229,  229,  229,  229,  229,  229,  229,
  860.       229,  230,  672,  230,  230,  230,  230,  230,  230,  230,
  861.       230,  230,  230,  230,  230,  230,  230,  353,  671,  353,
  862.       353,  353,  353,  353,  353,  353,  353,  353,  353,  353,
  863.       353,  353,  353,  354,  670,  354,  354,  354,  354,  354,
  864.       354,  354,  354,  354,  354,  354,  354,  354,  354,  234,
  865.       234,  234,  234,  234,  234,  234,  234,  234,  234,  234,
  866.       234,  234,  234,  234,  234,  236,  668,  236,  236,  667,
  867.       236,  236,  236,  666,  665,  236,  236,  664,  663,  662,
  868.       236,  238,  238,  238,  238,  661,  660,  238,  238,  238,
  869.  
  870.       242,  659,  242,  242,  242,  242,  242,  242,  242,  242,
  871.       242,  242,  242,  242,  242,  242,  246,  246,  246,  246,
  872.       658,  657,  246,  246,  246,  361,  361,  656,  655,  654,
  873.       361,  361,  255,  653,  652,  651,  255,  255,  255,  255,
  874.       650,  649,  255,  255,  257,  648,  257,  257,  257,  257,
  875.       257,  257,  257,  257,  257,  257,  257,  257,  257,  257,
  876.       261,  261,  261,  261,  647,  646,  261,  261,  261,  264,
  877.       264,  264,  264,  264,  264,  264,  264,  264,  264,  264,
  878.       264,  264,  264,  264,  264,  267,  267,  267,  267,  645,
  879.       267,  267,  267,  267,  267,  267,  267,  267,  267,  267,
  880.  
  881.       267,  271,  644,  643,  271,  271,  271,  271,  271,  271,
  882.       271,  642,  271,  271,  271,  271,  271,  274,  641,  274,
  883.       274,  640,  274,  274,  274,  639,  638,  274,  274,  637,
  884.       636,  635,  274,  279,  279,  279,  279,  622,  621,  279,
  885.       279,  279,  284,  620,  284,  284,  284,  284,  284,  284,
  886.       284,  284,  284,  284,  284,  284,  284,  284,  288,  288,
  887.       619,  288,  288,  618,  560,  614,  288,  288,  315,  613,
  888.       315,  315,  315,  315,  315,  315,  315,  315,  315,  315,
  889.       315,  315,  315,  315,  319,  612,  319,  319,  319,  319,
  890.       319,  319,  319,  319,  319,  319,  319,  319,  319,  319,
  891.  
  892.       320,  611,  320,  320,  320,  320,  320,  320,  320,  320,
  893.       320,  320,  320,  320,  320,  320,  415,  415,  415,  415,
  894.       415,  415,  415,  415,  415,  415,  415,  415,  415,  415,
  895.       415,  415,  424,  424,  424,  424,  610,  609,  424,  424,
  896.       424,  425,  425,  425,  425,  608,  607,  425,  425,  425,
  897.       330,  330,  330,  330,  330,  330,  330,  330,  330,  330,
  898.       330,  330,  330,  330,  330,  330,  334,  334,  334,  334,
  899.       334,  334,  334,  334,  334,  334,  334,  334,  334,  334,
  900.       334,  334,  338,  606,  338,  338,  338,  338,  338,  338,
  901.       338,  338,  338,  605,  338,  338,  338,  338,  433,  433,
  902.  
  903.       604,  603,  602,  601,  433,  346,  346,  346,  346,  600,
  904.       599,  346,  346,  346,  346,  351,  598,  351,  351,  351,
  905.       351,  351,  351,  351,  351,  351,  351,  351,  351,  351,
  906.       351,  615,  615,  615,  615,  615,  615,  615,  615,  615,
  907.       615,  615,  615,  615,  615,  615,  615,  684,  684,  684,
  908.       684,  684,  684,  684,  684,  684,  684,  684,  684,  684,
  909.       684,  684,  684,  597,  596,  595,  594,  593,  592,  589,
  910.       588,  587,  586,  585,  584,  571,  570,  569,  568,  565,
  911.       564,  563,  562,  561,  560,  559,  558,  557,  556,  555,
  912.       554,  551,  550,  549,  548,  547,  546,  545,  544,  543,
  913.  
  914.       542,  541,  540,  539,  538,  537,  536,  535,  531,  530,
  915.       529,  528,  527,  526,  525,  524,  523,  510,  509,  508,
  916.       507,  506,  503,  499,  498,  497,  496,  492,  491,  490,
  917.       489,  488,  484,  483,  482,  479,  478,  477,  476,  475,
  918.       474,  473,  472,  471,  470,  469,  468,  467,  466,  465,
  919.       464,  463,  462,  461,  460,  459,  458,  457,  456,  455,
  920.       454,  453,  452,  451,  439,  437,  436,  435,  434,  347,
  921.       426,  423,  422,  421,  322,  414,  316,  408,  407,  406,
  922.       401,  400,  399,  398,  397,  396,  395,  394,  391,  390,
  923.       389,  386,  385,  382,  379,  378,  285,  282,  377,  376,
  924.  
  925.       278,  373,  372,  243,  356,  355,  235,  231,  352,  350,
  926.       349,  348,  218,  347,  337,  206,  333,  202,  318,  186,
  927.       182,  316,  314,  313,  312,  311,  310,  309,  305,  299,
  928.       298,  295,  294,  291,  287,  286,  285,  283,  282,  281,
  929.       280,  260,  278,  277,  272,  270,  263,  262,  260,  256,
  930.       250,  253,  250,  249,  247,  245,  244,  243,  241,  240,
  931.       239,  237,  235,  228,  231,  228,  226,  218,  208,  202,
  932.       199,  186,  182,  768,   94,   94,   85,   77,   77,   39,
  933.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  934.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  935.  
  936.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  937.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  938.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  939.       768,  768,  768,  768,  768,  768,  768
  940.     } ;
  941.  
  942. static const short int yy_chk[2738] =
  943.     {   0,
  944.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  945.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  946.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  947.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  948.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  949.         1,    1,    1,    1,    1,    1,    1,    2,    2,    2,
  950.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  951.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  952.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  953.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  954.  
  955.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  956.         2,    2,    2,    2,    3,    3,    3,    3,  765,    3,
  957.         5,    5,    3,    3,    3,   27,   27,    3,    6,    6,
  958.         6,   75,    3,   75,    6,   17,   17,    3,    3,   11,
  959.        11,   11,   12,   12,   12,   17,   18,   18,   17,   17,
  960.        17,   19,   19,   19,   28,   28,   18,   29,   29,   18,
  961.        18,   18,   20,   20,   20,   29,  160,    3,    3,    3,
  962.         4,    4,    4,    4,   19,    4,    4,  445,    4,    4,
  963.         4,   21,   48,    4,  160,   20,   22,  163,    4,   17,
  964.        23,   23,  168,    4,    4,  167,    4,   30,   30,  167,
  965.  
  966.        18,   23,  168,   21,   21,   30,   21,  163,   22,   22,
  967.       445,   22,   23,   23,   23,   41,   41,   41,   45,   45,
  968.        45,   48,  764,    4,    4,    4,    9,    9,    9,    9,
  969.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  970.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  971.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  972.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  973.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  974.         9,    9,    9,   13,   13,   13,   13,   13,   13,   13,
  975.        13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
  976.  
  977.        13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
  978.        13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
  979.        13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
  980.        13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
  981.        24,   24,   37,  310,   37,   38,  310,   38,   57,   57,
  982.        57,   24,   60,   60,  763,   37,   37,   37,   38,   38,
  983.        38,  762,   24,   24,   24,   25,   25,   25,   25,   25,
  984.        25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
  985.        25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
  986.        25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
  987.  
  988.        25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
  989.        25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
  990.        25,   25,   31,   31,   31,   32,   32,   32,   62,   62,
  991.        62,   99,   99,   99,  109,  128,  128,  130,  130,  131,
  992.       131,  133,  133,  198,  198,   31,  761,  109,   32,   33,
  993.        33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
  994.        33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
  995.        33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
  996.        33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
  997.        33,   33,   33,   33,   33,   33,   33,   33,   33,   33,
  998.  
  999.        33,   33,   33,   33,   33,   33,   35,   35,   35,   35,
  1000.        35,   35,   35,   35,   35,   35,   35,   35,   35,   35,
  1001.        35,   35,   35,   35,   35,   35,   35,   35,   35,   35,
  1002.        35,   35,   35,   35,   35,   35,   35,   35,   35,   35,
  1003.        35,   35,   35,   35,   35,   35,   35,   35,   35,   35,
  1004.        35,   35,   35,   35,   35,   35,   35,   35,   35,   35,
  1005.        35,   35,   35,   49,   53,   53,   53,   61,   61,   61,
  1006.        53,  441,   66,  170,  188,   63,   63,   63,  105,  105,
  1007.       105,   63,  441,  170,  366,   49,  170,   49,   63,   49,
  1008.       108,  108,  108,   63,  121,   49,  205,  205,   49,   49,
  1009.  
  1010.        49,   63,   49,   49,   61,  115,  115,  115,   49,  257,
  1011.        49,  121,  366,  188,  141,  105,  158,  294,   53,   66,
  1012.       141,  294,  158,  180,  180,  180,  257,  108,  574,   63,
  1013.       181,  181,  181,  185,  185,  185,  192,  192,  192,  193,
  1014.       193,  193,  115,  194,  194,  194,  195,  195,  195,  574,
  1015.       192,  192,  192,  193,  193,  193,  369,  194,  194,  194,
  1016.       195,  195,  195,  201,  201,  201,  209,  209,  210,  201,
  1017.       211,  211,  211,  289,  210,  210,  213,  213,  213,  264,
  1018.       264,  192,  369,  217,  217,  217,  194,  289,  195,  217,
  1019.       248,  248,  248,  266,  266,  291,  217,  267,  267,  269,
  1020.  
  1021.       269,  217,  275,  760,  309,  757,  298,  211,  275,  217,
  1022.       298,  314,  291,  309,  314,  330,  330,  201,  317,  317,
  1023.       317,  332,  332,  314,  314,  334,  334,  336,  336,  338,
  1024.       338,  344,  344,  344,  314,  415,  415,  217,  241,  241,
  1025.       241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
  1026.       241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
  1027.       241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
  1028.       241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
  1029.       241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
  1030.       241,  241,  241,  241,  241,  250,  250,  250,  250,  362,
  1031.  
  1032.       371,  250,  339,  418,  418,  405,  250,  756,  339,  339,
  1033.       250,  405,  755,  250,  371,  250,  494,  494,  250,  278,
  1034.       278,  362,  278,  278,  278,  278,  278,  278,  278,  278,
  1035.       278,  278,  278,  278,  278,  278,  278,  278,  278,  278,
  1036.       278,  278,  278,  278,  278,  278,  278,  278,  278,  278,
  1037.       278,  278,  278,  278,  278,  278,  278,  278,  278,  278,
  1038.       278,  278,  278,  278,  278,  278,  278,  278,  278,  278,
  1039.       278,  278,  278,  278,  278,  278,  321,  321,  321,  324,
  1040.       324,  324,  363,  365,  364,  340,  340,  340,  367,  368,
  1041.       321,  321,  321,  324,  324,  324,  340,  342,  342,  342,
  1042.  
  1043.       754,  443,  365,  485,  363,  444,  342,  342,  364,  485,
  1044.       448,  409,  519,  367,  409,  409,  444,  368,  443,  442,
  1045.       368,  448,  340,  341,  341,  519,  341,  341,  341,  341,
  1046.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  1047.       341,  341,  341,  341,  341,  341,  341,  341,  341,  442,
  1048.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  1049.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  1050.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  1051.       343,  343,  343,  446,  370,  504,  504,  343,  752,  343,
  1052.       343,  420,  420,  420,  343,  343,  343,  343,  343,  343,
  1053.  
  1054.       360,  360,  446,  360,  360,  360,  360,  360,  360,  360,
  1055.       370,  360,  360,  360,  360,  360,  360,  360,  360,  360,
  1056.       360,  360,  505,  505,  360,  360,  360,  360,  416,  416,
  1057.       416,  419,  419,  419,  750,  447,  495,  495,  495,  428,
  1058.       428,  428,  416,  416,  416,  419,  419,  419,  428,  428,
  1059.       503,  503,  503,  449,  360,  360,  360,  375,  375,  447,
  1060.       375,  375,  375,  375,  375,  375,  375,  440,  375,  375,
  1061.       375,  375,  375,  375,  375,  375,  375,  375,  375,  449,
  1062.       450,  375,  375,  375,  375,  431,  431,  431,  511,  462,
  1063.       512,  440,  514,  440,  431,  431,  501,  501,  501,  450,
  1064.  
  1065.       561,  561,  517,  521,  749,  501,  501,  748,  512,  747,
  1066.       462,  375,  375,  375,  427,  427,  462,  517,  521,  511,
  1067.       514,  427,  427,  427,  427,  427,  427,  427,  427,  427,
  1068.       427,  427,  427,  427,  427,  427,  427,  427,  427,  427,
  1069.       427,  427,  427,  427,  427,  427,  429,  429,  429,  516,
  1070.       513,  515,  518,  429,  522,  745,  520,  565,  565,  565,
  1071.       429,  429,  429,  429,  429,  429,  432,  432,  432,  520,
  1072.       515,  522,  572,  432,  513,  516,  518,  566,  566,  532,
  1073.       432,  432,  432,  432,  432,  432,  502,  502,  502,  532,
  1074.       567,  567,  575,  502,  576,  572,  573,  577,  578,  579,
  1075.  
  1076.       502,  502,  502,  502,  502,  502,  580,  573,  581,  582,
  1077.       634,  583,  615,  615,  575,  577,  617,  617,  656,  656,
  1078.       744,  681,  743,  581,  576,  742,  578,  684,  684,  579,
  1079.       583,  686,  686,  810,  810,  708,  580,  582,  681,  708,
  1080.       634,  769,  769,  769,  769,  769,  769,  769,  769,  769,
  1081.       769,  769,  769,  769,  769,  769,  769,  770,  770,  770,
  1082.       770,  770,  770,  770,  770,  770,  770,  770,  770,  770,
  1083.       770,  770,  770,  771,  771,  771,  771,  771,  771,  771,
  1084.       771,  771,  771,  771,  771,  771,  771,  771,  771,  772,
  1085.       772,  772,  772,  772,  772,  772,  772,  772,  772,  772,
  1086.  
  1087.       772,  772,  772,  772,  772,  773,  773,  773,  773,  773,
  1088.       773,  773,  773,  773,  773,  773,  773,  773,  773,  773,
  1089.       773,  774,  774,  774,  774,  774,  774,  774,  774,  774,
  1090.       774,  774,  774,  774,  774,  774,  774,  775,  775,  775,
  1091.       775,  775,  775,  775,  775,  775,  775,  775,  775,  775,
  1092.       775,  775,  775,  776,  776,  776,  776,  776,  776,  776,
  1093.       776,  776,  776,  776,  776,  776,  776,  776,  776,  777,
  1094.       777,  777,  777,  777,  777,  777,  777,  777,  777,  777,
  1095.       777,  777,  777,  777,  777,  778,  778,  778,  778,  778,
  1096.       778,  778,  778,  778,  778,  778,  778,  778,  778,  778,
  1097.  
  1098.       778,  779,  779,  779,  779,  779,  779,  779,  779,  779,
  1099.       779,  779,  779,  779,  779,  779,  779,  780,  780,  780,
  1100.       780,  780,  780,  780,  780,  780,  780,  780,  780,  780,
  1101.       780,  780,  780,  781,  781,  781,  781,  781,  781,  781,
  1102.       781,  781,  781,  781,  781,  781,  781,  781,  781,  782,
  1103.       782,  782,  782,  782,  782,  782,  782,  782,  782,  782,
  1104.       782,  782,  782,  782,  782,  783,  783,  783,  783,  740,
  1105.       739,  783,  783,  783,  784,  784,  784,  784,  784,  784,
  1106.       784,  784,  784,  784,  784,  784,  784,  784,  784,  785,
  1107.       785,  785,  785,  738,  737,  785,  785,  785,  786,  736,
  1108.  
  1109.       786,  786,  786,  786,  786,  786,  786,  786,  786,  786,
  1110.       786,  786,  786,  786,  787,  735,  787,  787,  787,  787,
  1111.       787,  787,  787,  787,  787,  787,  787,  787,  787,  787,
  1112.       788,  788,  788,  734,  733,  788,  788,  788,  789,  732,
  1113.       789,  789,  789,  789,  789,  789,  789,  789,  789,  789,
  1114.       789,  789,  789,  789,  790,  731,  790,  790,  790,  790,
  1115.       790,  790,  790,  790,  790,  790,  790,  790,  790,  790,
  1116.       791,  729,  791,  791,  791,  791,  791,  791,  791,  791,
  1117.       791,  791,  791,  791,  791,  791,  792,  792,  792,  792,
  1118.       792,  792,  792,  792,  792,  792,  792,  792,  792,  792,
  1119.  
  1120.       792,  792,  793,  727,  793,  793,  726,  793,  793,  793,
  1121.       725,  724,  793,  793,  723,  722,  721,  793,  794,  794,
  1122.       794,  794,  720,  719,  794,  794,  794,  795,  718,  795,
  1123.       795,  795,  795,  795,  795,  795,  795,  795,  795,  795,
  1124.       795,  795,  795,  796,  796,  796,  796,  717,  715,  796,
  1125.       796,  796,  797,  714,  797,  797,  797,  797,  797,  797,
  1126.       797,  797,  797,  797,  797,  797,  797,  797,  798,  713,
  1127.       798,  798,  798,  798,  798,  798,  798,  798,  798,  712,
  1128.       798,  798,  798,  798,  799,  710,  709,  707,  799,  799,
  1129.       799,  799,  706,  705,  799,  799,  800,  704,  800,  800,
  1130.  
  1131.       800,  800,  800,  800,  800,  800,  800,  800,  800,  800,
  1132.       800,  800,  801,  801,  801,  801,  703,  702,  801,  801,
  1133.       801,  802,  802,  802,  802,  802,  802,  802,  802,  802,
  1134.       802,  802,  802,  802,  802,  802,  802,  803,  803,  803,
  1135.       803,  701,  803,  803,  803,  803,  803,  803,  803,  803,
  1136.       803,  803,  803,  804,  700,  699,  804,  804,  804,  804,
  1137.       804,  804,  804,  698,  804,  804,  804,  804,  804,  805,
  1138.       682,  805,  805,  805,  805,  805,  805,  805,  805,  805,
  1139.       805,  805,  805,  805,  805,  806,  680,  806,  806,  679,
  1140.       806,  806,  806,  678,  677,  806,  806,  675,  674,  672,
  1141.  
  1142.       806,  807,  807,  807,  807,  671,  670,  807,  807,  807,
  1143.       808,  669,  808,  808,  808,  808,  808,  808,  808,  808,
  1144.       808,  808,  808,  808,  808,  808,  809,  809,  668,  809,
  1145.       809,  667,  666,  665,  809,  809,  811,  664,  811,  811,
  1146.       811,  811,  811,  811,  811,  811,  811,  811,  811,  811,
  1147.       811,  811,  812,  663,  812,  812,  812,  812,  812,  812,
  1148.       812,  812,  812,  812,  812,  812,  812,  812,  813,  662,
  1149.       813,  813,  813,  813,  813,  813,  813,  813,  813,  813,
  1150.       813,  813,  813,  813,  814,  814,  661,  660,  814,  814,
  1151.       814,  815,  815,  659,  658,  815,  815,  815,  816,  816,
  1152.  
  1153.       816,  816,  816,  816,  816,  816,  816,  816,  816,  816,
  1154.       816,  816,  816,  816,  817,  817,  817,  817,  817,  817,
  1155.       817,  817,  817,  817,  817,  817,  817,  817,  817,  817,
  1156.       818,  655,  818,  818,  818,  818,  818,  818,  818,  818,
  1157.       818,  653,  818,  818,  818,  818,  819,  819,  652,  651,
  1158.       650,  646,  819,  820,  820,  820,  820,  644,  643,  820,
  1159.       820,  820,  820,  821,  642,  821,  821,  821,  821,  821,
  1160.       821,  821,  821,  821,  821,  821,  821,  821,  821,  822,
  1161.       641,  822,  822,  822,  822,  822,  822,  822,  822,  822,
  1162.       822,  822,  822,  822,  822,  823,  639,  823,  823,  823,
  1163.  
  1164.       823,  823,  823,  823,  823,  823,  823,  823,  823,  823,
  1165.       823,  824,  637,  824,  824,  824,  824,  824,  824,  824,
  1166.       824,  824,  824,  824,  824,  824,  824,  825,  636,  825,
  1167.       825,  825,  825,  825,  825,  825,  825,  825,  825,  825,
  1168.       825,  825,  825,  826,  635,  826,  826,  826,  826,  826,
  1169.       826,  826,  826,  826,  826,  826,  826,  826,  826,  827,
  1170.       827,  827,  827,  827,  827,  827,  827,  827,  827,  827,
  1171.       827,  827,  827,  827,  827,  828,  633,  828,  828,  632,
  1172.       828,  828,  828,  631,  630,  828,  828,  629,  628,  627,
  1173.       828,  829,  829,  829,  829,  626,  625,  829,  829,  829,
  1174.  
  1175.       830,  624,  830,  830,  830,  830,  830,  830,  830,  830,
  1176.       830,  830,  830,  830,  830,  830,  831,  831,  831,  831,
  1177.       623,  621,  831,  831,  831,  832,  832,  619,  612,  611,
  1178.       832,  832,  833,  610,  609,  608,  833,  833,  833,  833,
  1179.       607,  606,  833,  833,  834,  604,  834,  834,  834,  834,
  1180.       834,  834,  834,  834,  834,  834,  834,  834,  834,  834,
  1181.       835,  835,  835,  835,  601,  600,  835,  835,  835,  836,
  1182.       836,  836,  836,  836,  836,  836,  836,  836,  836,  836,
  1183.       836,  836,  836,  836,  836,  837,  837,  837,  837,  599,
  1184.       837,  837,  837,  837,  837,  837,  837,  837,  837,  837,
  1185.  
  1186.       837,  838,  598,  597,  838,  838,  838,  838,  838,  838,
  1187.       838,  596,  838,  838,  838,  838,  838,  839,  595,  839,
  1188.       839,  594,  839,  839,  839,  593,  592,  839,  839,  591,
  1189.       590,  588,  839,  840,  840,  840,  840,  569,  568,  840,
  1190.       840,  840,  841,  564,  841,  841,  841,  841,  841,  841,
  1191.       841,  841,  841,  841,  841,  841,  841,  841,  842,  842,
  1192.       563,  842,  842,  562,  560,  559,  842,  842,  843,  558,
  1193.       843,  843,  843,  843,  843,  843,  843,  843,  843,  843,
  1194.       843,  843,  843,  843,  844,  557,  844,  844,  844,  844,
  1195.       844,  844,  844,  844,  844,  844,  844,  844,  844,  844,
  1196.  
  1197.       845,  556,  845,  845,  845,  845,  845,  845,  845,  845,
  1198.       845,  845,  845,  845,  845,  845,  846,  846,  846,  846,
  1199.       846,  846,  846,  846,  846,  846,  846,  846,  846,  846,
  1200.       846,  846,  847,  847,  847,  847,  555,  554,  847,  847,
  1201.       847,  848,  848,  848,  848,  553,  552,  848,  848,  848,
  1202.       849,  849,  849,  849,  849,  849,  849,  849,  849,  849,
  1203.       849,  849,  849,  849,  849,  849,  850,  850,  850,  850,
  1204.       850,  850,  850,  850,  850,  850,  850,  850,  850,  850,
  1205.       850,  850,  851,  551,  851,  851,  851,  851,  851,  851,
  1206.       851,  851,  851,  549,  851,  851,  851,  851,  852,  852,
  1207.  
  1208.       548,  546,  545,  544,  852,  853,  853,  853,  853,  543,
  1209.       542,  853,  853,  853,  853,  854,  541,  854,  854,  854,
  1210.       854,  854,  854,  854,  854,  854,  854,  854,  854,  854,
  1211.       854,  855,  855,  855,  855,  855,  855,  855,  855,  855,
  1212.       855,  855,  855,  855,  855,  855,  855,  856,  856,  856,
  1213.       856,  856,  856,  856,  856,  856,  856,  856,  856,  856,
  1214.       856,  856,  856,  540,  539,  538,  536,  534,  533,  530,
  1215.       528,  526,  525,  524,  523,  509,  508,  507,  506,  500,
  1216.       499,  498,  497,  496,  492,  491,  490,  489,  488,  487,
  1217.       486,  483,  482,  481,  480,  479,  478,  476,  475,  474,
  1218.  
  1219.       473,  472,  471,  469,  468,  467,  464,  463,  461,  460,
  1220.       459,  458,  457,  454,  453,  452,  451,  439,  437,  436,
  1221.       435,  434,  430,  426,  423,  422,  421,  414,  413,  412,
  1222.       411,  410,  408,  407,  406,  404,  403,  402,  401,  400,
  1223.       399,  398,  397,  396,  395,  394,  393,  392,  391,  390,
  1224.       388,  387,  386,  384,  383,  382,  381,  380,  379,  378,
  1225.       377,  376,  373,  372,  361,  356,  355,  352,  350,  346,
  1226.       337,  327,  326,  325,  323,  318,  315,  313,  312,  311,
  1227.       308,  307,  306,  305,  303,  301,  300,  299,  297,  296,
  1228.       295,  293,  292,  290,  287,  286,  284,  282,  281,  280,
  1229.  
  1230.       276,  263,  262,  243,  240,  239,  234,  231,  226,  222,
  1231.       221,  220,  219,  216,  208,  207,  204,  203,  189,  187,
  1232.       183,  179,  176,  175,  174,  173,  172,  171,  169,  166,
  1233.       165,  162,  161,  159,  156,  155,  154,  153,  151,  149,
  1234.       148,  146,  144,  143,  137,  134,  125,  124,  122,  119,
  1235.       114,  112,  107,  103,   97,   92,   89,   87,   85,   84,
  1236.        83,   80,   76,   74,   73,   71,   67,   65,   59,   55,
  1237.        50,   47,   43,   39,   16,   15,   10,    8,    7,  768,
  1238.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  1239.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  1240.  
  1241.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  1242.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  1243.       768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
  1244.       768,  768,  768,  768,  768,  768,  768
  1245.     } ;
  1246.  
  1247. static yy_state_type yy_last_accepting_state;
  1248. static char *yy_last_accepting_cpos;
  1249.  
  1250. /* The intent behind this definition is that it'll catch
  1251.  * any uses of REJECT which flex missed.
  1252.  */
  1253. #define REJECT reject_used_but_not_detected
  1254. #define yymore() yymore_used_but_not_detected
  1255. #define YY_MORE_ADJ 0
  1256. char *yytext;
  1257. #line 1 "scan.l"
  1258. #define INITIAL 0
  1259. /* scan.l - scanner for flex input */
  1260. #line 4 "scan.l"
  1261. /*-
  1262.  * Copyright (c) 1990 The Regents of the University of California.
  1263.  * All rights reserved.
  1264.  *
  1265.  * This code is derived from software contributed to Berkeley by
  1266.  * Vern Paxson.
  1267.  * 
  1268.  * The United States Government has rights in this work pursuant
  1269.  * to contract no. DE-AC03-76SF00098 between the United States
  1270.  * Department of Energy and the University of California.
  1271.  *
  1272.  * Redistribution and use in source and binary forms are permitted provided
  1273.  * that: (1) source distributions retain this entire copyright notice and
  1274.  * comment, and (2) distributions including binaries display the following
  1275.  * acknowledgement:  ``This product includes software developed by the
  1276.  * University of California, Berkeley and its contributors'' in the
  1277.  * documentation or other materials provided with the distribution and in
  1278.  * all advertising materials mentioning features or use of this software.
  1279.  * Neither the name of the University nor the names of its contributors may
  1280.  * be used to endorse or promote products derived from this software without
  1281.  * specific prior written permission.
  1282.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  1283.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  1284.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  1285.  */
  1286.  
  1287. /* $Header: /home/daffy/u0/vern/flex/RCS/scan.l,v 2.54 95/03/20 14:01:16 vern Exp $ */
  1288.  
  1289. #include "flexdef.h"
  1290. #include "parse.h"
  1291.  
  1292. #define ACTION_ECHO add_action( yytext )
  1293. #define ACTION_IFDEF(def, should_define) \
  1294.     { \
  1295.     if ( should_define ) \
  1296.         action_define( def, 1 ); \
  1297.     }
  1298.  
  1299. #define MARK_END_OF_PROLOG mark_prolog();
  1300.  
  1301. #define YY_DECL \
  1302.     int flexscan()
  1303.  
  1304. #define RETURNCHAR \
  1305.     yylval = (unsigned char) yytext[0]; \
  1306.     return CHAR;
  1307.  
  1308. #define RETURNNAME \
  1309.     strcpy( nmstr, yytext ); \
  1310.     return NAME;
  1311.  
  1312. #define PUT_BACK_STRING(str, start) \
  1313.     for ( i = strlen( str ) - 1; i >= start; --i ) \
  1314.         unput((str)[i])
  1315.  
  1316. #define CHECK_REJECT(str) \
  1317.     if ( all_upper( str ) ) \
  1318.         reject = true;
  1319.  
  1320. #define CHECK_YYMORE(str) \
  1321.     if ( all_lower( str ) ) \
  1322.         yymore_used = true;
  1323. #define YY_STACK_USED 1
  1324. #define YY_NO_TOP_STATE 1
  1325. #define SECT2 1
  1326. #define SECT2PROLOG 2
  1327. #define SECT3 3
  1328. #define CODEBLOCK 4
  1329. #define PICKUPDEF 5
  1330. #define SC 6
  1331. #define CARETISBOL 7
  1332. #define NUM 8
  1333. #define QUOTE 9
  1334.  
  1335. #define FIRSTCCL 10
  1336. #define CCL 11
  1337. #define ACTION 12
  1338. #define RECOVER 13
  1339. #define COMMENT 14
  1340. #define ACTION_STRING 15
  1341. #define PERCENT_BRACE_ACTION 16
  1342.  
  1343. #define OPTION 17
  1344. #define LINEDIR 18
  1345.  
  1346. #line 1347 "scan.c"
  1347.  
  1348. /* Macros after this point can all be overridden by user definitions in
  1349.  * section 1.
  1350.  */
  1351.  
  1352. #if YY_STACK_USED
  1353. static int yy_start_stack_ptr = 0;
  1354. static int yy_start_stack_depth = 0;
  1355. static int *yy_start_stack = 0;
  1356. #ifndef YY_NO_PUSH_STATE
  1357. static void yy_push_state YY_PROTO(( int new_state ));
  1358. #endif
  1359. #ifndef YY_NO_POP_STATE
  1360. static void yy_pop_state YY_PROTO(( void ));
  1361. #endif
  1362. #ifndef YY_NO_TOP_STATE
  1363. static int yy_top_state YY_PROTO(( void ));
  1364. #endif
  1365.  
  1366. #else
  1367. #define YY_NO_PUSH_STATE 1
  1368. #define YY_NO_POP_STATE 1
  1369. #define YY_NO_TOP_STATE 1
  1370. #endif
  1371.  
  1372. #ifdef YY_MALLOC_DECL
  1373. YY_MALLOC_DECL
  1374. #else
  1375. #if __STDC__
  1376. #ifndef __cplusplus
  1377. #include <stdlib.h>
  1378. #endif
  1379. #else
  1380. /* Just try to get by without declaring the routines.  This will fail
  1381.  * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
  1382.  * or sizeof(void*) != sizeof(int).
  1383.  */
  1384. #endif
  1385. #endif
  1386.  
  1387. /* Amount of stuff to slurp up with each read. */
  1388. #ifndef YY_READ_BUF_SIZE
  1389. #define YY_READ_BUF_SIZE 8192
  1390. #endif
  1391.  
  1392. /* Copy whatever the last rule matched to the standard output. */
  1393.  
  1394. #ifndef ECHO
  1395. /* This used to be an fputs(), but since the string might contain NUL's,
  1396.  * we now use fwrite().
  1397.  */
  1398. #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
  1399. #endif
  1400.  
  1401. /* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
  1402.  * is returned in "result".
  1403.  */
  1404. #ifndef YY_INPUT
  1405. #define YY_INPUT(buf,result,max_size) \
  1406.     if ( yy_current_buffer->yy_is_interactive ) \
  1407.         { \
  1408.         int c = '*', n; \
  1409.         for ( n = 0; n < max_size && \
  1410.                  (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
  1411.             buf[n] = (char) c; \
  1412.         if ( c == '\n' ) \
  1413.             buf[n++] = (char) c; \
  1414.         if ( c == EOF && ferror( yyin ) ) \
  1415.             YY_FATAL_ERROR( "input in flex scanner failed" ); \
  1416.         result = n; \
  1417.         } \
  1418.     else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
  1419.           && ferror( yyin ) ) \
  1420.         YY_FATAL_ERROR( "input in flex scanner failed" );
  1421. #endif
  1422.  
  1423. /* No semi-colon after return; correct usage is to write "yyterminate();" -
  1424.  * we don't want an extra ';' after the "return" because that will cause
  1425.  * some compilers to complain about unreachable statements.
  1426.  */
  1427. #ifndef yyterminate
  1428. #define yyterminate() return YY_NULL
  1429. #endif
  1430.  
  1431. /* Number of entries by which start-condition stack grows. */
  1432. #ifndef YY_START_STACK_INCR
  1433. #define YY_START_STACK_INCR 25
  1434. #endif
  1435.  
  1436. /* Report a fatal error. */
  1437. #ifndef YY_FATAL_ERROR
  1438. #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
  1439. #endif
  1440.  
  1441. /* Default declaration of generated scanner - a define so the user can
  1442.  * easily add parameters.
  1443.  */
  1444. #ifndef YY_DECL
  1445. #define YY_DECL int yylex YY_PROTO(( void ))
  1446. #endif
  1447.  
  1448. /* Code executed at the beginning of each rule, after yytext and yyleng
  1449.  * have been set up.
  1450.  */
  1451. #ifndef YY_USER_ACTION
  1452. #define YY_USER_ACTION
  1453. #endif
  1454.  
  1455. /* Code executed at the end of each rule. */
  1456. #ifndef YY_BREAK
  1457. #define YY_BREAK break;
  1458. #endif
  1459.  
  1460. #define YY_RULE_SETUP \
  1461.     if ( yyleng > 0 ) \
  1462.         yy_current_buffer->yy_at_bol = \
  1463.                 (yytext[yyleng - 1] == '\n'); \
  1464.     YY_USER_ACTION
  1465.  
  1466. YY_DECL
  1467.     {
  1468.     register yy_state_type yy_current_state;
  1469.     register char *yy_cp, *yy_bp;
  1470.     register int yy_act;
  1471.  
  1472. #line 94 "scan.l"
  1473.  
  1474.     static int bracelevel, didadef, indented_code;
  1475.     static int doing_rule_action = false;
  1476.     static int option_sense;
  1477.  
  1478.     int doing_codeblock = false;
  1479.     int i;
  1480.     Char nmdef[MAXLINE], myesc();
  1481.  
  1482.  
  1483. #line 1484 "scan.c"
  1484.  
  1485.     if ( yy_init )
  1486.         {
  1487.         yy_init = 0;
  1488.  
  1489. #ifdef YY_USER_INIT
  1490.         YY_USER_INIT;
  1491. #endif
  1492.  
  1493.         if ( ! yy_start )
  1494.             yy_start = 1;    /* first start state */
  1495.  
  1496.         if ( ! yyin )
  1497.             yyin = stdin;
  1498.  
  1499.         if ( ! yyout )
  1500.             yyout = stdout;
  1501.  
  1502.         if ( ! yy_current_buffer )
  1503.             yy_current_buffer =
  1504.                 yy_create_buffer( yyin, YY_BUF_SIZE );
  1505.  
  1506.         yy_load_buffer_state();
  1507.         }
  1508.  
  1509.     while ( 1 )        /* loops until end-of-file is reached */
  1510.         {
  1511.         yy_cp = yy_c_buf_p;
  1512.  
  1513.         /* Support of yytext. */
  1514.         *yy_cp = yy_hold_char;
  1515.  
  1516.         /* yy_bp points to the position in yy_ch_buf of the start of
  1517.          * the current run.
  1518.          */
  1519.         yy_bp = yy_cp;
  1520.  
  1521.         yy_current_state = yy_start;
  1522.         yy_current_state += YY_AT_BOL();
  1523. yy_match:
  1524.         do
  1525.             {
  1526.             register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  1527.             if ( yy_accept[yy_current_state] )
  1528.                 {
  1529.                 yy_last_accepting_state = yy_current_state;
  1530.                 yy_last_accepting_cpos = yy_cp;
  1531.                 }
  1532.             while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1533.                 {
  1534.                 yy_current_state = (int) yy_def[yy_current_state];
  1535.                 if ( yy_current_state >= 769 )
  1536.                     yy_c = yy_meta[(unsigned int) yy_c];
  1537.                 }
  1538.             yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  1539.             ++yy_cp;
  1540.             }
  1541.         while ( yy_base[yy_current_state] != 2680 );
  1542.  
  1543. yy_find_action:
  1544.         yy_act = yy_accept[yy_current_state];
  1545.         if ( yy_act == 0 )
  1546.             { /* have to back up */
  1547.             yy_cp = yy_last_accepting_cpos;
  1548.             yy_current_state = yy_last_accepting_state;
  1549.             yy_act = yy_accept[yy_current_state];
  1550.             }
  1551.  
  1552.         YY_DO_BEFORE_ACTION;
  1553.  
  1554.  
  1555. do_action:    /* This label is used only to access EOF actions. */
  1556.  
  1557.  
  1558.         switch ( yy_act )
  1559.     { /* beginning of action switch */
  1560.             case 0: /* must back up */
  1561.             /* undo the effects of YY_DO_BEFORE_ACTION */
  1562.             *yy_cp = yy_hold_char;
  1563.             yy_cp = yy_last_accepting_cpos;
  1564.             yy_current_state = yy_last_accepting_state;
  1565.             goto yy_find_action;
  1566.  
  1567.  
  1568. case 1:
  1569. YY_RULE_SETUP
  1570. #line 105 "scan.l"
  1571. indented_code = true; BEGIN(CODEBLOCK);
  1572.     YY_BREAK
  1573. case 2:
  1574. YY_RULE_SETUP
  1575. #line 106 "scan.l"
  1576. ACTION_ECHO; yy_push_state( COMMENT );
  1577.     YY_BREAK
  1578. case 3:
  1579. YY_RULE_SETUP
  1580. #line 107 "scan.l"
  1581. yy_push_state( LINEDIR );
  1582.     YY_BREAK
  1583. case 4:
  1584. YY_RULE_SETUP
  1585. #line 108 "scan.l"
  1586. return SCDECL;
  1587.     YY_BREAK
  1588. case 5:
  1589. YY_RULE_SETUP
  1590. #line 109 "scan.l"
  1591. return XSCDECL;
  1592.     YY_BREAK
  1593. case 6:
  1594. YY_RULE_SETUP
  1595. #line 110 "scan.l"
  1596. {
  1597.             ++linenum;
  1598.             line_directive_out( (FILE *) 0, 1 );
  1599.             indented_code = false;
  1600.             BEGIN(CODEBLOCK);
  1601.             }
  1602.     YY_BREAK
  1603. case 7:
  1604. YY_RULE_SETUP
  1605. #line 117 "scan.l"
  1606. /* discard */
  1607.     YY_BREAK
  1608. case 8:
  1609. YY_RULE_SETUP
  1610. #line 119 "scan.l"
  1611. {
  1612.             sectnum = 2;
  1613.             bracelevel = 0;
  1614.             mark_defs1();
  1615.             line_directive_out( (FILE *) 0, 1 );
  1616.             BEGIN(SECT2PROLOG);
  1617.             return SECTEND;
  1618.             }
  1619.     YY_BREAK
  1620. case 9:
  1621. YY_RULE_SETUP
  1622. #line 128 "scan.l"
  1623. yytext_is_array = false; ++linenum;
  1624.     YY_BREAK
  1625. case 10:
  1626. YY_RULE_SETUP
  1627. #line 129 "scan.l"
  1628. yytext_is_array = true; ++linenum;
  1629.     YY_BREAK
  1630. case 11:
  1631. YY_RULE_SETUP
  1632. #line 131 "scan.l"
  1633. BEGIN(OPTION); return OPTION_OP;
  1634.     YY_BREAK
  1635. case 12:
  1636. YY_RULE_SETUP
  1637. #line 133 "scan.l"
  1638. ++linenum; /* ignore */
  1639.     YY_BREAK
  1640. case 13:
  1641. YY_RULE_SETUP
  1642. #line 134 "scan.l"
  1643. ++linenum;    /* ignore */
  1644.     YY_BREAK
  1645. case 14:
  1646. YY_RULE_SETUP
  1647. #line 136 "scan.l"
  1648. synerr( _( "unrecognized '%' directive" ) );
  1649.     YY_BREAK
  1650. case 15:
  1651. YY_RULE_SETUP
  1652. #line 138 "scan.l"
  1653. {
  1654.             strcpy( nmstr, yytext );
  1655.             didadef = false;
  1656.             BEGIN(PICKUPDEF);
  1657.             }
  1658.     YY_BREAK
  1659. case 16:
  1660. YY_RULE_SETUP
  1661. #line 144 "scan.l"
  1662. RETURNNAME;
  1663.     YY_BREAK
  1664. case 17:
  1665. YY_RULE_SETUP
  1666. #line 145 "scan.l"
  1667. ++linenum; /* allows blank lines in section 1 */
  1668.     YY_BREAK
  1669. case 18:
  1670. YY_RULE_SETUP
  1671. #line 146 "scan.l"
  1672. ACTION_ECHO; ++linenum; /* maybe end of comment line */
  1673.     YY_BREAK
  1674.  
  1675.  
  1676. case 19:
  1677. YY_RULE_SETUP
  1678. #line 151 "scan.l"
  1679. ACTION_ECHO; yy_pop_state();
  1680.     YY_BREAK
  1681. case 20:
  1682. YY_RULE_SETUP
  1683. #line 152 "scan.l"
  1684. ACTION_ECHO;
  1685.     YY_BREAK
  1686. case 21:
  1687. YY_RULE_SETUP
  1688. #line 153 "scan.l"
  1689. ACTION_ECHO;
  1690.     YY_BREAK
  1691. case 22:
  1692. YY_RULE_SETUP
  1693. #line 154 "scan.l"
  1694. ++linenum; ACTION_ECHO;
  1695.     YY_BREAK
  1696.  
  1697.  
  1698. case 23:
  1699. YY_RULE_SETUP
  1700. #line 158 "scan.l"
  1701. yy_pop_state();
  1702.     YY_BREAK
  1703. case 24:
  1704. YY_RULE_SETUP
  1705. #line 159 "scan.l"
  1706. linenum = myctoi( yytext );
  1707.     YY_BREAK
  1708. case 25:
  1709. YY_RULE_SETUP
  1710. #line 161 "scan.l"
  1711. {
  1712.             flex_free( infilename );
  1713.             infilename = copy_string( yytext + 1 );
  1714.             infilename[strlen( infilename ) - 1] = '\0';
  1715.             }
  1716.     YY_BREAK
  1717. case 26:
  1718. YY_RULE_SETUP
  1719. #line 166 "scan.l"
  1720. /* ignore spurious characters */
  1721.     YY_BREAK
  1722.  
  1723.  
  1724. case 27:
  1725. YY_RULE_SETUP
  1726. #line 170 "scan.l"
  1727. ++linenum; BEGIN(INITIAL);
  1728.     YY_BREAK
  1729. case 28:
  1730. YY_RULE_SETUP
  1731. #line 172 "scan.l"
  1732. ACTION_ECHO;
  1733.     YY_BREAK
  1734. case 29:
  1735. YY_RULE_SETUP
  1736. #line 174 "scan.l"
  1737. {
  1738.             ++linenum;
  1739.             ACTION_ECHO;
  1740.             if ( indented_code )
  1741.                 BEGIN(INITIAL);
  1742.             }
  1743.     YY_BREAK
  1744.  
  1745.  
  1746. case 30:
  1747. YY_RULE_SETUP
  1748. #line 184 "scan.l"
  1749. /* separates name and definition */
  1750.     YY_BREAK
  1751. case 31:
  1752. YY_RULE_SETUP
  1753. #line 186 "scan.l"
  1754. {
  1755.             strcpy( (char *) nmdef, yytext );
  1756.  
  1757.             /* Skip trailing whitespace. */
  1758.             for ( i = strlen( (char *) nmdef ) - 1;
  1759.                   i >= 0 && (nmdef[i] == ' ' || nmdef[i] == '\t');
  1760.                   --i )
  1761.                 ;
  1762.  
  1763.             nmdef[i + 1] = '\0';
  1764.  
  1765.             ndinstal( nmstr, nmdef );
  1766.             didadef = true;
  1767.             }
  1768.     YY_BREAK
  1769. case 32:
  1770. YY_RULE_SETUP
  1771. #line 201 "scan.l"
  1772. {
  1773.             if ( ! didadef )
  1774.                 synerr( _( "incomplete name definition" ) );
  1775.             BEGIN(INITIAL);
  1776.             ++linenum;
  1777.             }
  1778.     YY_BREAK
  1779.  
  1780.  
  1781. case 33:
  1782. YY_RULE_SETUP
  1783. #line 211 "scan.l"
  1784. ++linenum; BEGIN(INITIAL);
  1785.     YY_BREAK
  1786. case 34:
  1787. YY_RULE_SETUP
  1788. #line 212 "scan.l"
  1789. option_sense = true;
  1790.     YY_BREAK
  1791. case 35:
  1792. YY_RULE_SETUP
  1793. #line 214 "scan.l"
  1794. return '=';
  1795.     YY_BREAK
  1796. case 36:
  1797. YY_RULE_SETUP
  1798. #line 216 "scan.l"
  1799. option_sense = ! option_sense;
  1800.     YY_BREAK
  1801. case 37:
  1802. YY_RULE_SETUP
  1803. #line 218 "scan.l"
  1804. csize = option_sense ? 128 : 256;
  1805.     YY_BREAK
  1806. case 38:
  1807. YY_RULE_SETUP
  1808. #line 219 "scan.l"
  1809. csize = option_sense ? 256 : 128;
  1810.     YY_BREAK
  1811. case 39:
  1812. YY_RULE_SETUP
  1813. #line 221 "scan.l"
  1814. long_align = option_sense;
  1815.     YY_BREAK
  1816. case 40:
  1817. YY_RULE_SETUP
  1818. #line 222 "scan.l"
  1819. {
  1820.             action_define( "YY_ALWAYS_INTERACTIVE", option_sense );
  1821.             }
  1822.     YY_BREAK
  1823. case 41:
  1824. YY_RULE_SETUP
  1825. #line 225 "scan.l"
  1826. yytext_is_array = option_sense;
  1827.     YY_BREAK
  1828. case 42:
  1829. YY_RULE_SETUP
  1830. #line 226 "scan.l"
  1831. backing_up_report = option_sense;
  1832.     YY_BREAK
  1833. case 43:
  1834. YY_RULE_SETUP
  1835. #line 227 "scan.l"
  1836. interactive = ! option_sense;
  1837.     YY_BREAK
  1838. case 44:
  1839. YY_RULE_SETUP
  1840. #line 228 "scan.l"
  1841. C_plus_plus = option_sense;
  1842.     YY_BREAK
  1843. case 45:
  1844. YY_RULE_SETUP
  1845. #line 229 "scan.l"
  1846. caseins = ! option_sense;
  1847.     YY_BREAK
  1848. case 46:
  1849. YY_RULE_SETUP
  1850. #line 230 "scan.l"
  1851. caseins = option_sense;
  1852.     YY_BREAK
  1853. case 47:
  1854. YY_RULE_SETUP
  1855. #line 231 "scan.l"
  1856. ddebug = option_sense;
  1857.     YY_BREAK
  1858. case 48:
  1859. YY_RULE_SETUP
  1860. #line 232 "scan.l"
  1861. spprdflt = ! option_sense;
  1862.     YY_BREAK
  1863. case 49:
  1864. YY_RULE_SETUP
  1865. #line 233 "scan.l"
  1866. useecs = option_sense;
  1867.     YY_BREAK
  1868. case 50:
  1869. YY_RULE_SETUP
  1870. #line 234 "scan.l"
  1871. {
  1872.             useecs = usemecs = false;
  1873.             use_read = fullspd = true;
  1874.             }
  1875.     YY_BREAK
  1876. case 51:
  1877. YY_RULE_SETUP
  1878. #line 238 "scan.l"
  1879. {
  1880.             useecs = usemecs = false;
  1881.             use_read = fulltbl = true;
  1882.             }
  1883.     YY_BREAK
  1884. case 52:
  1885. YY_RULE_SETUP
  1886. #line 242 "scan.l"
  1887. ACTION_IFDEF("YY_NO_INPUT", ! option_sense);
  1888.     YY_BREAK
  1889. case 53:
  1890. YY_RULE_SETUP
  1891. #line 243 "scan.l"
  1892. interactive = option_sense;
  1893.     YY_BREAK
  1894. case 54:
  1895. YY_RULE_SETUP
  1896. #line 244 "scan.l"
  1897. lex_compat = option_sense;
  1898.     YY_BREAK
  1899. case 55:
  1900. YY_RULE_SETUP
  1901. #line 245 "scan.l"
  1902. {
  1903.             action_define( "YY_MAIN", option_sense );
  1904.             do_yywrap = ! option_sense;
  1905.             }
  1906.     YY_BREAK
  1907. case 56:
  1908. YY_RULE_SETUP
  1909. #line 249 "scan.l"
  1910. usemecs = option_sense;
  1911.     YY_BREAK
  1912. case 57:
  1913. YY_RULE_SETUP
  1914. #line 250 "scan.l"
  1915. {
  1916.             action_define( "YY_NEVER_INTERACTIVE", option_sense );
  1917.             }
  1918.     YY_BREAK
  1919. case 58:
  1920. YY_RULE_SETUP
  1921. #line 253 "scan.l"
  1922. performance_report += option_sense ? 1 : -1;
  1923.     YY_BREAK
  1924. case 59:
  1925. YY_RULE_SETUP
  1926. #line 254 "scan.l"
  1927. yytext_is_array = ! option_sense;
  1928.     YY_BREAK
  1929. case 60:
  1930. YY_RULE_SETUP
  1931. #line 255 "scan.l"
  1932. use_read = option_sense;
  1933.     YY_BREAK
  1934. case 61:
  1935. YY_RULE_SETUP
  1936. #line 256 "scan.l"
  1937. reject_really_used = option_sense;
  1938.     YY_BREAK
  1939. case 62:
  1940. YY_RULE_SETUP
  1941. #line 257 "scan.l"
  1942. action_define( "YY_STACK_USED", option_sense );
  1943.     YY_BREAK
  1944. case 63:
  1945. YY_RULE_SETUP
  1946. #line 258 "scan.l"
  1947. do_stdinit = option_sense;
  1948.     YY_BREAK
  1949. case 64:
  1950. YY_RULE_SETUP
  1951. #line 259 "scan.l"
  1952. use_stdout = option_sense;
  1953.     YY_BREAK
  1954. case 65:
  1955. YY_RULE_SETUP
  1956. #line 260 "scan.l"
  1957. ACTION_IFDEF("YY_NO_UNPUT", ! option_sense);
  1958.     YY_BREAK
  1959. case 66:
  1960. YY_RULE_SETUP
  1961. #line 261 "scan.l"
  1962. printstats = option_sense;
  1963.     YY_BREAK
  1964. case 67:
  1965. YY_RULE_SETUP
  1966. #line 262 "scan.l"
  1967. nowarn = ! option_sense;
  1968.     YY_BREAK
  1969. case 68:
  1970. YY_RULE_SETUP
  1971. #line 263 "scan.l"
  1972. do_yylineno = option_sense;
  1973.     YY_BREAK
  1974. case 69:
  1975. YY_RULE_SETUP
  1976. #line 264 "scan.l"
  1977. yymore_really_used = option_sense;
  1978.     YY_BREAK
  1979. case 70:
  1980. YY_RULE_SETUP
  1981. #line 265 "scan.l"
  1982. do_yywrap = option_sense;
  1983.     YY_BREAK
  1984. case 71:
  1985. YY_RULE_SETUP
  1986. #line 267 "scan.l"
  1987. ACTION_IFDEF("YY_NO_PUSH_STATE", ! option_sense);
  1988.     YY_BREAK
  1989. case 72:
  1990. YY_RULE_SETUP
  1991. #line 268 "scan.l"
  1992. ACTION_IFDEF("YY_NO_POP_STATE", ! option_sense);
  1993.     YY_BREAK
  1994. case 73:
  1995. YY_RULE_SETUP
  1996. #line 269 "scan.l"
  1997. ACTION_IFDEF("YY_NO_TOP_STATE", ! option_sense);
  1998.     YY_BREAK
  1999. case 74:
  2000. YY_RULE_SETUP
  2001. #line 271 "scan.l"
  2002. ACTION_IFDEF("YY_NO_SCAN_BUFFER", ! option_sense);
  2003.     YY_BREAK
  2004. case 75:
  2005. YY_RULE_SETUP
  2006. #line 272 "scan.l"
  2007. ACTION_IFDEF("YY_NO_SCAN_BYTES", ! option_sense);
  2008.     YY_BREAK
  2009. case 76:
  2010. YY_RULE_SETUP
  2011. #line 273 "scan.l"
  2012. ACTION_IFDEF("YY_NO_SCAN_STRING", ! option_sense);
  2013.     YY_BREAK
  2014. case 77:
  2015. YY_RULE_SETUP
  2016. #line 275 "scan.l"
  2017. return OPT_OUTFILE;
  2018.     YY_BREAK
  2019. case 78:
  2020. YY_RULE_SETUP
  2021. #line 276 "scan.l"
  2022. return OPT_PREFIX;
  2023.     YY_BREAK
  2024. case 79:
  2025. YY_RULE_SETUP
  2026. #line 277 "scan.l"
  2027. return OPT_YYCLASS;
  2028.     YY_BREAK
  2029. case 80:
  2030. YY_RULE_SETUP
  2031. #line 279 "scan.l"
  2032. {
  2033.             strcpy( nmstr, yytext + 1 );
  2034.             nmstr[strlen( nmstr ) - 1] = '\0';
  2035.             return NAME;
  2036.             }
  2037.     YY_BREAK
  2038. case 81:
  2039. YY_RULE_SETUP
  2040. #line 285 "scan.l"
  2041. {
  2042.             format_synerr( _( "unrecognized %%option: %s" ),
  2043.                 yytext );
  2044.             BEGIN(RECOVER);
  2045.             }
  2046.     YY_BREAK
  2047.  
  2048. case 82:
  2049. YY_RULE_SETUP
  2050. #line 292 "scan.l"
  2051. ++linenum; BEGIN(INITIAL);
  2052.     YY_BREAK
  2053.  
  2054. case 83:
  2055. YY_RULE_SETUP
  2056. #line 296 "scan.l"
  2057. ++bracelevel; yyless( 2 );    /* eat only %{ */
  2058.     YY_BREAK
  2059. case 84:
  2060. YY_RULE_SETUP
  2061. #line 297 "scan.l"
  2062. --bracelevel; yyless( 2 );    /* eat only %} */
  2063.     YY_BREAK
  2064. case 85:
  2065. YY_RULE_SETUP
  2066. #line 299 "scan.l"
  2067. ACTION_ECHO;    /* indented code in prolog */
  2068.     YY_BREAK
  2069. case 86:
  2070. YY_RULE_SETUP
  2071. #line 301 "scan.l"
  2072. {    /* non-indented code */
  2073.             if ( bracelevel <= 0 )
  2074.                 { /* not in %{ ... %} */
  2075.                 yyless( 0 );    /* put it all back */
  2076.                 yy_set_bol( 1 );
  2077.                 mark_prolog();
  2078.                 BEGIN(SECT2);
  2079.                 }
  2080.             else
  2081.                 ACTION_ECHO;
  2082.             }
  2083.     YY_BREAK
  2084. case 87:
  2085. YY_RULE_SETUP
  2086. #line 313 "scan.l"
  2087. ACTION_ECHO;
  2088.     YY_BREAK
  2089. case 88:
  2090. YY_RULE_SETUP
  2091. #line 314 "scan.l"
  2092. ++linenum; ACTION_ECHO;
  2093.     YY_BREAK
  2094. case YY_STATE_EOF(SECT2PROLOG):
  2095. #line 316 "scan.l"
  2096. {
  2097.             mark_prolog();
  2098.             sectnum = 0;
  2099.             yyterminate(); /* to stop the parser */
  2100.             }
  2101.     YY_BREAK
  2102.  
  2103.  
  2104. case 89:
  2105. YY_RULE_SETUP
  2106. #line 324 "scan.l"
  2107. ++linenum; /* allow blank lines in section 2 */
  2108.     YY_BREAK
  2109. case 90:
  2110. YY_RULE_SETUP
  2111. #line 326 "scan.l"
  2112. {
  2113.             indented_code = false;
  2114.             doing_codeblock = true;
  2115.             bracelevel = 1;
  2116.             BEGIN(PERCENT_BRACE_ACTION);
  2117.             }
  2118.     YY_BREAK
  2119. case 91:
  2120. YY_RULE_SETUP
  2121. #line 333 "scan.l"
  2122. BEGIN(SC); return '<';
  2123.     YY_BREAK
  2124. case 92:
  2125. YY_RULE_SETUP
  2126. #line 334 "scan.l"
  2127. return '^';
  2128.     YY_BREAK
  2129. case 93:
  2130. YY_RULE_SETUP
  2131. #line 335 "scan.l"
  2132. BEGIN(QUOTE); return '"';
  2133.     YY_BREAK
  2134. case 94:
  2135. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
  2136. yy_c_buf_p = yy_cp = yy_bp + 1;
  2137. YY_DO_BEFORE_ACTION; /* set up yytext again */
  2138. YY_RULE_SETUP
  2139. #line 336 "scan.l"
  2140. BEGIN(NUM); return '{';
  2141.     YY_BREAK
  2142. case 95:
  2143. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
  2144. yy_c_buf_p = yy_cp = yy_bp + 1;
  2145. YY_DO_BEFORE_ACTION; /* set up yytext again */
  2146. YY_RULE_SETUP
  2147. #line 337 "scan.l"
  2148. return '$';
  2149.     YY_BREAK
  2150. case 96:
  2151. YY_RULE_SETUP
  2152. #line 339 "scan.l"
  2153. {
  2154.             bracelevel = 1;
  2155.             BEGIN(PERCENT_BRACE_ACTION);
  2156.  
  2157.             if ( in_rule )
  2158.                 {
  2159.                 doing_rule_action = true;
  2160.                 in_rule = false;
  2161.                 return '\n';
  2162.                 }
  2163.             }
  2164.     YY_BREAK
  2165. case 97:
  2166. YY_RULE_SETUP
  2167. #line 350 "scan.l"
  2168. continued_action = true; ++linenum; return '\n';
  2169.     YY_BREAK
  2170. case 98:
  2171. YY_RULE_SETUP
  2172. #line 352 "scan.l"
  2173. {
  2174.             yyless( yyleng - 2 );    /* put back '/', '*' */
  2175.             bracelevel = 0;
  2176.             continued_action = false;
  2177.             BEGIN(ACTION);
  2178.             }
  2179.     YY_BREAK
  2180. case 99:
  2181. YY_RULE_SETUP
  2182. #line 359 "scan.l"
  2183. /* allow indented rules */
  2184.     YY_BREAK
  2185. case 100:
  2186. YY_RULE_SETUP
  2187. #line 361 "scan.l"
  2188. {
  2189.             /* This rule is separate from the one below because
  2190.              * otherwise we get variable trailing context, so
  2191.              * we can't build the scanner using -{f,F}.
  2192.              */
  2193.             bracelevel = 0;
  2194.             continued_action = false;
  2195.             BEGIN(ACTION);
  2196.  
  2197.             if ( in_rule )
  2198.                 {
  2199.                 doing_rule_action = true;
  2200.                 in_rule = false;
  2201.                 return '\n';
  2202.                 }
  2203.             }
  2204.     YY_BREAK
  2205. case 101:
  2206. YY_RULE_SETUP
  2207. #line 378 "scan.l"
  2208. {
  2209.             bracelevel = 0;
  2210.             continued_action = false;
  2211.             BEGIN(ACTION);
  2212.             unput( '\n' );    /* so <ACTION> sees it */
  2213.  
  2214.             if ( in_rule )
  2215.                 {
  2216.                 doing_rule_action = true;
  2217.                 in_rule = false;
  2218.                 return '\n';
  2219.                 }
  2220.             }
  2221.     YY_BREAK
  2222. case 102:
  2223. #line 393 "scan.l"
  2224. case 103:
  2225. YY_RULE_SETUP
  2226. #line 393 "scan.l"
  2227. return EOF_OP;
  2228.     YY_BREAK
  2229. case 104:
  2230. YY_RULE_SETUP
  2231. #line 395 "scan.l"
  2232. {
  2233.             sectnum = 3;
  2234.             BEGIN(SECT3);
  2235.             yyterminate(); /* to stop the parser */
  2236.             }
  2237.     YY_BREAK
  2238. case 105:
  2239. YY_RULE_SETUP
  2240. #line 401 "scan.l"
  2241. {
  2242.             int cclval;
  2243.  
  2244.             strcpy( nmstr, yytext );
  2245.  
  2246.             /* Check to see if we've already encountered this
  2247.              * ccl.
  2248.              */
  2249.             if ( (cclval = ccllookup( (Char *) nmstr )) != 0 )
  2250.                 {
  2251.                 if ( input() != ']' )
  2252.                     synerr( _( "bad character class" ) );
  2253.  
  2254.                 yylval = cclval;
  2255.                 ++cclreuse;
  2256.                 return PREVCCL;
  2257.                 }
  2258.             else
  2259.                 {
  2260.                 /* We fudge a bit.  We know that this ccl will
  2261.                  * soon be numbered as lastccl + 1 by cclinit.
  2262.                  */
  2263.                 cclinstal( (Char *) nmstr, lastccl + 1 );
  2264.  
  2265.                 /* Push back everything but the leading bracket
  2266.                  * so the ccl can be rescanned.
  2267.                  */
  2268.                 yyless( 1 );
  2269.  
  2270.                 BEGIN(FIRSTCCL);
  2271.                 return '[';
  2272.                 }
  2273.             }
  2274.     YY_BREAK
  2275. case 106:
  2276. YY_RULE_SETUP
  2277. #line 435 "scan.l"
  2278. {
  2279.             register Char *nmdefptr;
  2280.             Char *ndlookup();
  2281.  
  2282.             strcpy( nmstr, yytext + 1 );
  2283.             nmstr[yyleng - 2] = '\0';  /* chop trailing brace */
  2284.  
  2285.             if ( (nmdefptr = ndlookup( nmstr )) == 0 )
  2286.                 format_synerr(
  2287.                     _( "undefined definition {%s}" ),
  2288.                         nmstr );
  2289.  
  2290.             else
  2291.                 { /* push back name surrounded by ()'s */
  2292.                 int len = strlen( (char *) nmdefptr );
  2293.  
  2294.                 if ( lex_compat || nmdefptr[0] == '^' ||
  2295.                      (len > 0 && nmdefptr[len - 1] == '$') )
  2296.                     { /* don't use ()'s after all */
  2297.                     PUT_BACK_STRING((char *) nmdefptr, 0);
  2298.  
  2299.                     if ( nmdefptr[0] == '^' )
  2300.                         BEGIN(CARETISBOL);
  2301.                     }
  2302.  
  2303.                 else
  2304.                     {
  2305.                     unput(')');
  2306.                     PUT_BACK_STRING((char *) nmdefptr, 0);
  2307.                     unput('(');
  2308.                     }
  2309.                 }
  2310.             }
  2311.     YY_BREAK
  2312. case 107:
  2313. YY_RULE_SETUP
  2314. #line 469 "scan.l"
  2315. return (unsigned char) yytext[0];
  2316.     YY_BREAK
  2317. case 108:
  2318. YY_RULE_SETUP
  2319. #line 470 "scan.l"
  2320. RETURNCHAR;
  2321.     YY_BREAK
  2322.  
  2323.  
  2324. case 109:
  2325. YY_RULE_SETUP
  2326. #line 475 "scan.l"
  2327. return (unsigned char) yytext[0];
  2328.     YY_BREAK
  2329. case 110:
  2330. YY_RULE_SETUP
  2331. #line 476 "scan.l"
  2332. BEGIN(SECT2); return '>';
  2333.     YY_BREAK
  2334. case 111:
  2335. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
  2336. yy_c_buf_p = yy_cp = yy_bp + 1;
  2337. YY_DO_BEFORE_ACTION; /* set up yytext again */
  2338. YY_RULE_SETUP
  2339. #line 477 "scan.l"
  2340. BEGIN(CARETISBOL); return '>';
  2341.     YY_BREAK
  2342. case 112:
  2343. YY_RULE_SETUP
  2344. #line 478 "scan.l"
  2345. RETURNNAME;
  2346.     YY_BREAK
  2347. case 113:
  2348. YY_RULE_SETUP
  2349. #line 479 "scan.l"
  2350. {
  2351.             format_synerr( _( "bad <start condition>: %s" ),
  2352.                 yytext );
  2353.             }
  2354.     YY_BREAK
  2355.  
  2356. case 114:
  2357. YY_RULE_SETUP
  2358. #line 485 "scan.l"
  2359. BEGIN(SECT2); return '^';
  2360.     YY_BREAK
  2361.  
  2362. case 115:
  2363. YY_RULE_SETUP
  2364. #line 489 "scan.l"
  2365. RETURNCHAR;
  2366.     YY_BREAK
  2367. case 116:
  2368. YY_RULE_SETUP
  2369. #line 490 "scan.l"
  2370. BEGIN(SECT2); return '"';
  2371.     YY_BREAK
  2372. case 117:
  2373. YY_RULE_SETUP
  2374. #line 492 "scan.l"
  2375. {
  2376.             synerr( _( "missing quote" ) );
  2377.             BEGIN(SECT2);
  2378.             ++linenum;
  2379.             return '"';
  2380.             }
  2381.     YY_BREAK
  2382.  
  2383.  
  2384. case 118:
  2385. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
  2386. yy_c_buf_p = yy_cp = yy_bp + 1;
  2387. YY_DO_BEFORE_ACTION; /* set up yytext again */
  2388. YY_RULE_SETUP
  2389. #line 502 "scan.l"
  2390. BEGIN(CCL); return '^';
  2391.     YY_BREAK
  2392. case 119:
  2393. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
  2394. yy_c_buf_p = yy_cp = yy_bp + 1;
  2395. YY_DO_BEFORE_ACTION; /* set up yytext again */
  2396. YY_RULE_SETUP
  2397. #line 503 "scan.l"
  2398. return '^';
  2399.     YY_BREAK
  2400. case 120:
  2401. YY_RULE_SETUP
  2402. #line 504 "scan.l"
  2403. BEGIN(CCL); RETURNCHAR;
  2404.     YY_BREAK
  2405.  
  2406.  
  2407. case 121:
  2408. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
  2409. yy_c_buf_p = yy_cp = yy_bp + 1;
  2410. YY_DO_BEFORE_ACTION; /* set up yytext again */
  2411. YY_RULE_SETUP
  2412. #line 508 "scan.l"
  2413. return '-';
  2414.     YY_BREAK
  2415. case 122:
  2416. YY_RULE_SETUP
  2417. #line 509 "scan.l"
  2418. RETURNCHAR;
  2419.     YY_BREAK
  2420. case 123:
  2421. YY_RULE_SETUP
  2422. #line 510 "scan.l"
  2423. BEGIN(SECT2); return ']';
  2424.     YY_BREAK
  2425. case 124:
  2426. YY_RULE_SETUP
  2427. #line 511 "scan.l"
  2428. {
  2429.             synerr( _( "bad character class" ) );
  2430.             BEGIN(SECT2);
  2431.             return ']';
  2432.             }
  2433.     YY_BREAK
  2434.  
  2435.  
  2436. case 125:
  2437. YY_RULE_SETUP
  2438. #line 519 "scan.l"
  2439. BEGIN(CCL); return CCE_ALNUM;
  2440.     YY_BREAK
  2441. case 126:
  2442. YY_RULE_SETUP
  2443. #line 520 "scan.l"
  2444. BEGIN(CCL); return CCE_ALPHA;
  2445.     YY_BREAK
  2446. case 127:
  2447. YY_RULE_SETUP
  2448. #line 521 "scan.l"
  2449. BEGIN(CCL); return CCE_BLANK;
  2450.     YY_BREAK
  2451. case 128:
  2452. YY_RULE_SETUP
  2453. #line 522 "scan.l"
  2454. BEGIN(CCL); return CCE_CNTRL;
  2455.     YY_BREAK
  2456. case 129:
  2457. YY_RULE_SETUP
  2458. #line 523 "scan.l"
  2459. BEGIN(CCL); return CCE_DIGIT;
  2460.     YY_BREAK
  2461. case 130:
  2462. YY_RULE_SETUP
  2463. #line 524 "scan.l"
  2464. BEGIN(CCL); return CCE_GRAPH;
  2465.     YY_BREAK
  2466. case 131:
  2467. YY_RULE_SETUP
  2468. #line 525 "scan.l"
  2469. BEGIN(CCL); return CCE_LOWER;
  2470.     YY_BREAK
  2471. case 132:
  2472. YY_RULE_SETUP
  2473. #line 526 "scan.l"
  2474. BEGIN(CCL); return CCE_PRINT;
  2475.     YY_BREAK
  2476. case 133:
  2477. YY_RULE_SETUP
  2478. #line 527 "scan.l"
  2479. BEGIN(CCL); return CCE_PUNCT;
  2480.     YY_BREAK
  2481. case 134:
  2482. YY_RULE_SETUP
  2483. #line 528 "scan.l"
  2484. BEGIN(CCL); return CCE_SPACE;
  2485.     YY_BREAK
  2486. case 135:
  2487. YY_RULE_SETUP
  2488. #line 529 "scan.l"
  2489. BEGIN(CCL); return CCE_UPPER;
  2490.     YY_BREAK
  2491. case 136:
  2492. YY_RULE_SETUP
  2493. #line 530 "scan.l"
  2494. BEGIN(CCL); return CCE_XDIGIT;
  2495.     YY_BREAK
  2496. case 137:
  2497. YY_RULE_SETUP
  2498. #line 531 "scan.l"
  2499. {
  2500.             format_synerr(
  2501.                 _( "bad character class expression: %s" ),
  2502.                     yytext );
  2503.             BEGIN(CCL); return CCE_ALNUM;
  2504.             }
  2505.     YY_BREAK
  2506.  
  2507.  
  2508. case 138:
  2509. YY_RULE_SETUP
  2510. #line 540 "scan.l"
  2511. {
  2512.             yylval = myctoi( yytext );
  2513.             return NUMBER;
  2514.             }
  2515.     YY_BREAK
  2516. case 139:
  2517. YY_RULE_SETUP
  2518. #line 545 "scan.l"
  2519. return ',';
  2520.     YY_BREAK
  2521. case 140:
  2522. YY_RULE_SETUP
  2523. #line 546 "scan.l"
  2524. BEGIN(SECT2); return '}';
  2525.     YY_BREAK
  2526. case 141:
  2527. YY_RULE_SETUP
  2528. #line 548 "scan.l"
  2529. {
  2530.             synerr( _( "bad character inside {}'s" ) );
  2531.             BEGIN(SECT2);
  2532.             return '}';
  2533.             }
  2534.     YY_BREAK
  2535. case 142:
  2536. YY_RULE_SETUP
  2537. #line 554 "scan.l"
  2538. {
  2539.             synerr( _( "missing }" ) );
  2540.             BEGIN(SECT2);
  2541.             ++linenum;
  2542.             return '}';
  2543.             }
  2544.     YY_BREAK
  2545.  
  2546.  
  2547. case 143:
  2548. YY_RULE_SETUP
  2549. #line 564 "scan.l"
  2550. bracelevel = 0;
  2551.     YY_BREAK
  2552. case 144:
  2553. YY_RULE_SETUP
  2554. #line 566 "scan.l"
  2555. ACTION_ECHO; yy_push_state( COMMENT );
  2556.     YY_BREAK
  2557.  
  2558. case 145:
  2559. YY_RULE_SETUP
  2560. #line 569 "scan.l"
  2561. {
  2562.             ACTION_ECHO;
  2563.             CHECK_REJECT(yytext);
  2564.             }
  2565.     YY_BREAK
  2566. case 146:
  2567. YY_RULE_SETUP
  2568. #line 573 "scan.l"
  2569. {
  2570.             ACTION_ECHO;
  2571.             CHECK_YYMORE(yytext);
  2572.             }
  2573.     YY_BREAK
  2574.  
  2575. case 147:
  2576. YY_RULE_SETUP
  2577. #line 579 "scan.l"
  2578. ACTION_ECHO;
  2579.     YY_BREAK
  2580. case 148:
  2581. YY_RULE_SETUP
  2582. #line 580 "scan.l"
  2583. {
  2584.             ++linenum;
  2585.             ACTION_ECHO;
  2586.             if ( bracelevel == 0 ||
  2587.                  (doing_codeblock && indented_code) )
  2588.                 {
  2589.                 if ( doing_rule_action )
  2590.                     add_action( "\tYY_BREAK\n" );
  2591.  
  2592.                 doing_rule_action = doing_codeblock = false;
  2593.                 BEGIN(SECT2);
  2594.                 }
  2595.             }
  2596.     YY_BREAK
  2597.  
  2598. /* Reject and YYmore() are checked for above, in PERCENT_BRACE_ACTION */
  2599.  
  2600. case 149:
  2601. YY_RULE_SETUP
  2602. #line 598 "scan.l"
  2603. ACTION_ECHO; ++bracelevel;
  2604.     YY_BREAK
  2605. case 150:
  2606. YY_RULE_SETUP
  2607. #line 599 "scan.l"
  2608. ACTION_ECHO; --bracelevel;
  2609.     YY_BREAK
  2610. case 151:
  2611. YY_RULE_SETUP
  2612. #line 600 "scan.l"
  2613. ACTION_ECHO;
  2614.     YY_BREAK
  2615. case 152:
  2616. YY_RULE_SETUP
  2617. #line 601 "scan.l"
  2618. ACTION_ECHO;
  2619.     YY_BREAK
  2620. case 153:
  2621. YY_RULE_SETUP
  2622. #line 602 "scan.l"
  2623. ACTION_ECHO; /* character constant */
  2624.     YY_BREAK
  2625. case 154:
  2626. YY_RULE_SETUP
  2627. #line 603 "scan.l"
  2628. ACTION_ECHO; BEGIN(ACTION_STRING);
  2629.     YY_BREAK
  2630. case 155:
  2631. YY_RULE_SETUP
  2632. #line 604 "scan.l"
  2633. {
  2634.             ++linenum;
  2635.             ACTION_ECHO;
  2636.             if ( bracelevel == 0 )
  2637.                 {
  2638.                 if ( doing_rule_action )
  2639.                     add_action( "\tYY_BREAK\n" );
  2640.  
  2641.                 doing_rule_action = false;
  2642.                 BEGIN(SECT2);
  2643.                 }
  2644.             }
  2645.     YY_BREAK
  2646. case 156:
  2647. YY_RULE_SETUP
  2648. #line 616 "scan.l"
  2649. ACTION_ECHO;
  2650.     YY_BREAK
  2651.  
  2652.  
  2653. case 157:
  2654. YY_RULE_SETUP
  2655. #line 620 "scan.l"
  2656. ACTION_ECHO;
  2657.     YY_BREAK
  2658. case 158:
  2659. YY_RULE_SETUP
  2660. #line 621 "scan.l"
  2661. ACTION_ECHO;
  2662.     YY_BREAK
  2663. case 159:
  2664. YY_RULE_SETUP
  2665. #line 622 "scan.l"
  2666. ++linenum; ACTION_ECHO;
  2667.     YY_BREAK
  2668. case 160:
  2669. YY_RULE_SETUP
  2670. #line 623 "scan.l"
  2671. ACTION_ECHO; BEGIN(ACTION);
  2672.     YY_BREAK
  2673. case 161:
  2674. YY_RULE_SETUP
  2675. #line 624 "scan.l"
  2676. ACTION_ECHO;
  2677.     YY_BREAK
  2678.  
  2679. case YY_STATE_EOF(COMMENT):
  2680. case YY_STATE_EOF(ACTION):
  2681. case YY_STATE_EOF(ACTION_STRING):
  2682. #line 627 "scan.l"
  2683. {
  2684.             synerr( _( "EOF encountered inside an action" ) );
  2685.             yyterminate();
  2686.             }
  2687.     YY_BREAK
  2688. case 162:
  2689. YY_RULE_SETUP
  2690. #line 633 "scan.l"
  2691. {
  2692.             yylval = myesc( (Char *) yytext );
  2693.  
  2694.             if ( YY_START == FIRSTCCL )
  2695.                 BEGIN(CCL);
  2696.  
  2697.             return CHAR;
  2698.             }
  2699.     YY_BREAK
  2700.  
  2701. case 163:
  2702. YY_RULE_SETUP
  2703. #line 644 "scan.l"
  2704. ECHO;
  2705.     YY_BREAK
  2706. case YY_STATE_EOF(SECT3):
  2707. #line 645 "scan.l"
  2708. sectnum = 0; yyterminate();
  2709.     YY_BREAK
  2710.  
  2711. case 164:
  2712. YY_RULE_SETUP
  2713. #line 648 "scan.l"
  2714. format_synerr( _( "bad character: %s" ), yytext );
  2715.     YY_BREAK
  2716. case 165:
  2717. YY_RULE_SETUP
  2718. #line 650 "scan.l"
  2719. YY_FATAL_ERROR( "flex scanner jammed" );
  2720.     YY_BREAK
  2721. #line 2722 "scan.c"
  2722. case YY_STATE_EOF(INITIAL):
  2723. case YY_STATE_EOF(SECT2):
  2724. case YY_STATE_EOF(CODEBLOCK):
  2725. case YY_STATE_EOF(PICKUPDEF):
  2726. case YY_STATE_EOF(SC):
  2727. case YY_STATE_EOF(CARETISBOL):
  2728. case YY_STATE_EOF(NUM):
  2729. case YY_STATE_EOF(QUOTE):
  2730. case YY_STATE_EOF(FIRSTCCL):
  2731. case YY_STATE_EOF(CCL):
  2732. case YY_STATE_EOF(RECOVER):
  2733. case YY_STATE_EOF(PERCENT_BRACE_ACTION):
  2734. case YY_STATE_EOF(OPTION):
  2735. case YY_STATE_EOF(LINEDIR):
  2736.     yyterminate();
  2737.  
  2738.     case YY_END_OF_BUFFER:
  2739.         {
  2740.         /* Amount of text matched not including the EOB char. */
  2741.         int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
  2742.  
  2743.         /* Undo the effects of YY_DO_BEFORE_ACTION. */
  2744.         *yy_cp = yy_hold_char;
  2745.  
  2746.         if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
  2747.             {
  2748.             /* We're scanning a new file or input source.  It's
  2749.              * possible that this happened because the user
  2750.              * just pointed yyin at a new source and called
  2751.              * yylex().  If so, then we have to assure
  2752.              * consistency between yy_current_buffer and our
  2753.              * globals.  Here is the right place to do so, because
  2754.              * this is the first action (other than possibly a
  2755.              * back-up) that will match for the new input source.
  2756.              */
  2757.             yy_n_chars = yy_current_buffer->yy_n_chars;
  2758.             yy_current_buffer->yy_input_file = yyin;
  2759.             yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
  2760.             }
  2761.  
  2762.         /* Note that here we test for yy_c_buf_p "<=" to the position
  2763.          * of the first EOB in the buffer, since yy_c_buf_p will
  2764.          * already have been incremented past the NUL character
  2765.          * (since all states make transitions on EOB to the
  2766.          * end-of-buffer state).  Contrast this with the test
  2767.          * in input().
  2768.          */
  2769.         if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  2770.             { /* This was really a NUL. */
  2771.             yy_state_type yy_next_state;
  2772.  
  2773.             yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
  2774.  
  2775.             yy_current_state = yy_get_previous_state();
  2776.  
  2777.             /* Okay, we're now positioned to make the NUL
  2778.              * transition.  We couldn't have
  2779.              * yy_get_previous_state() go ahead and do it
  2780.              * for us because it doesn't know how to deal
  2781.              * with the possibility of jamming (and we don't
  2782.              * want to build jamming into it because then it
  2783.              * will run more slowly).
  2784.              */
  2785.  
  2786.             yy_next_state = yy_try_NUL_trans( yy_current_state );
  2787.  
  2788.             yy_bp = yytext_ptr + YY_MORE_ADJ;
  2789.  
  2790.             if ( yy_next_state )
  2791.                 {
  2792.                 /* Consume the NUL. */
  2793.                 yy_cp = ++yy_c_buf_p;
  2794.                 yy_current_state = yy_next_state;
  2795.                 goto yy_match;
  2796.                 }
  2797.  
  2798.             else
  2799.                 {
  2800.                 yy_cp = yy_c_buf_p;
  2801.                 goto yy_find_action;
  2802.                 }
  2803.             }
  2804.  
  2805.         else switch ( yy_get_next_buffer() )
  2806.             {
  2807.             case EOB_ACT_END_OF_FILE:
  2808.                 {
  2809.                 yy_did_buffer_switch_on_eof = 0;
  2810.  
  2811.                 if ( yywrap() )
  2812.                     {
  2813.                     /* Note: because we've taken care in
  2814.                      * yy_get_next_buffer() to have set up
  2815.                      * yytext, we can now set up
  2816.                      * yy_c_buf_p so that if some total
  2817.                      * hoser (like flex itself) wants to
  2818.                      * call the scanner after we return the
  2819.                      * YY_NULL, it'll still work - another
  2820.                      * YY_NULL will get returned.
  2821.                      */
  2822.                     yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
  2823.  
  2824.                     yy_act = YY_STATE_EOF(YY_START);
  2825.                     goto do_action;
  2826.                     }
  2827.  
  2828.                 else
  2829.                     {
  2830.                     if ( ! yy_did_buffer_switch_on_eof )
  2831.                         YY_NEW_FILE;
  2832.                     }
  2833.                 break;
  2834.                 }
  2835.  
  2836.             case EOB_ACT_CONTINUE_SCAN:
  2837.                 yy_c_buf_p =
  2838.                     yytext_ptr + yy_amount_of_matched_text;
  2839.  
  2840.                 yy_current_state = yy_get_previous_state();
  2841.  
  2842.                 yy_cp = yy_c_buf_p;
  2843.                 yy_bp = yytext_ptr + YY_MORE_ADJ;
  2844.                 goto yy_match;
  2845.  
  2846.             case EOB_ACT_LAST_MATCH:
  2847.                 yy_c_buf_p =
  2848.                 &yy_current_buffer->yy_ch_buf[yy_n_chars];
  2849.  
  2850.                 yy_current_state = yy_get_previous_state();
  2851.  
  2852.                 yy_cp = yy_c_buf_p;
  2853.                 yy_bp = yytext_ptr + YY_MORE_ADJ;
  2854.                 goto yy_find_action;
  2855.             }
  2856.         break;
  2857.         }
  2858.  
  2859.     default:
  2860.         YY_FATAL_ERROR(
  2861.             "fatal flex scanner internal error--no action found" );
  2862.     } /* end of action switch */
  2863.         } /* end of scanning one token */
  2864.     } /* end of yylex */
  2865.  
  2866.  
  2867. /* yy_get_next_buffer - try to read in a new buffer
  2868.  *
  2869.  * Returns a code representing an action:
  2870.  *    EOB_ACT_LAST_MATCH -
  2871.  *    EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  2872.  *    EOB_ACT_END_OF_FILE - end of file
  2873.  */
  2874.  
  2875. static int yy_get_next_buffer()
  2876.     {
  2877.     register char *dest = yy_current_buffer->yy_ch_buf;
  2878.     register char *source = yytext_ptr;
  2879.     register int number_to_move, i;
  2880.     int ret_val;
  2881.  
  2882.     if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  2883.         YY_FATAL_ERROR(
  2884.         "fatal flex scanner internal error--end of buffer missed" );
  2885.  
  2886.     if ( yy_current_buffer->yy_fill_buffer == 0 )
  2887.         { /* Don't try to fill the buffer, so this is an EOF. */
  2888.         if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
  2889.             {
  2890.             /* We matched a singled characater, the EOB, so
  2891.              * treat this as a final EOF.
  2892.              */
  2893.             return EOB_ACT_END_OF_FILE;
  2894.             }
  2895.  
  2896.         else
  2897.             {
  2898.             /* We matched some text prior to the EOB, first
  2899.              * process it.
  2900.              */
  2901.             return EOB_ACT_LAST_MATCH;
  2902.             }
  2903.         }
  2904.  
  2905.     /* Try to read more data. */
  2906.  
  2907.     /* First move last chars to start of buffer. */
  2908.     number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
  2909.  
  2910.     for ( i = 0; i < number_to_move; ++i )
  2911.         *(dest++) = *(source++);
  2912.  
  2913.     if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  2914.         /* don't do the read, it's not guaranteed to return an EOF,
  2915.          * just force an EOF
  2916.          */
  2917.         yy_n_chars = 0;
  2918.  
  2919.     else
  2920.         {
  2921.         int num_to_read =
  2922.             yy_current_buffer->yy_buf_size - number_to_move - 1;
  2923.  
  2924.         while ( num_to_read <= 0 )
  2925.             { /* Not enough room in the buffer - grow it. */
  2926. #ifdef YY_USES_REJECT
  2927.             YY_FATAL_ERROR(
  2928. "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
  2929. #else
  2930.  
  2931.             /* just a shorter name for the current buffer */
  2932.             YY_BUFFER_STATE b = yy_current_buffer;
  2933.  
  2934.             int yy_c_buf_p_offset =
  2935.                 (int) (yy_c_buf_p - b->yy_ch_buf);
  2936.  
  2937.             if ( b->yy_is_our_buffer )
  2938.                 {
  2939.                 int new_size = b->yy_buf_size * 2;
  2940.  
  2941.                 if ( new_size <= 0 )
  2942.                     b->yy_buf_size += b->yy_buf_size / 8;
  2943.                 else
  2944.                     b->yy_buf_size *= 2;
  2945.  
  2946.                 b->yy_ch_buf = (char *)
  2947.                     /* Include room in for 2 EOB chars. */
  2948.                     yy_flex_realloc( (void *) b->yy_ch_buf,
  2949.                              b->yy_buf_size + 2 );
  2950.                 }
  2951.             else
  2952.                 /* Can't grow it, we don't own it. */
  2953.                 b->yy_ch_buf = 0;
  2954.  
  2955.             if ( ! b->yy_ch_buf )
  2956.                 YY_FATAL_ERROR(
  2957.                 "fatal error - scanner input buffer overflow" );
  2958.  
  2959.             yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
  2960.  
  2961.             num_to_read = yy_current_buffer->yy_buf_size -
  2962.                         number_to_move - 1;
  2963. #endif
  2964.             }
  2965.  
  2966.         if ( num_to_read > YY_READ_BUF_SIZE )
  2967.             num_to_read = YY_READ_BUF_SIZE;
  2968.  
  2969.         /* Read in more data. */
  2970.         YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  2971.             yy_n_chars, num_to_read );
  2972.         }
  2973.  
  2974.     if ( yy_n_chars == 0 )
  2975.         {
  2976.         if ( number_to_move == YY_MORE_ADJ )
  2977.             {
  2978.             ret_val = EOB_ACT_END_OF_FILE;
  2979.             yyrestart( yyin );
  2980.             }
  2981.  
  2982.         else
  2983.             {
  2984.             ret_val = EOB_ACT_LAST_MATCH;
  2985.             yy_current_buffer->yy_buffer_status =
  2986.                 YY_BUFFER_EOF_PENDING;
  2987.             }
  2988.         }
  2989.  
  2990.     else
  2991.         ret_val = EOB_ACT_CONTINUE_SCAN;
  2992.  
  2993.     yy_n_chars += number_to_move;
  2994.     yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  2995.     yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
  2996.  
  2997.     yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
  2998.  
  2999.     return ret_val;
  3000.     }
  3001.  
  3002.  
  3003. /* yy_get_previous_state - get the state just before the EOB char was reached */
  3004.  
  3005. static yy_state_type yy_get_previous_state()
  3006.     {
  3007.     register yy_state_type yy_current_state;
  3008.     register char *yy_cp;
  3009.  
  3010.     yy_current_state = yy_start;
  3011.     yy_current_state += YY_AT_BOL();
  3012.  
  3013.     for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  3014.         {
  3015.         register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  3016.         if ( yy_accept[yy_current_state] )
  3017.             {
  3018.             yy_last_accepting_state = yy_current_state;
  3019.             yy_last_accepting_cpos = yy_cp;
  3020.             }
  3021.         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  3022.             {
  3023.             yy_current_state = (int) yy_def[yy_current_state];
  3024.             if ( yy_current_state >= 769 )
  3025.                 yy_c = yy_meta[(unsigned int) yy_c];
  3026.             }
  3027.         yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  3028.         }
  3029.  
  3030.     return yy_current_state;
  3031.     }
  3032.  
  3033.  
  3034. /* yy_try_NUL_trans - try to make a transition on the NUL character
  3035.  *
  3036.  * synopsis
  3037.  *    next_state = yy_try_NUL_trans( current_state );
  3038.  */
  3039.  
  3040. #ifdef YY_USE_PROTOS
  3041. static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
  3042. #else
  3043. static yy_state_type yy_try_NUL_trans( yy_current_state )
  3044. yy_state_type yy_current_state;
  3045. #endif
  3046.     {
  3047.     register int yy_is_jam;
  3048.     register char *yy_cp = yy_c_buf_p;
  3049.  
  3050.     register YY_CHAR yy_c = 1;
  3051.     if ( yy_accept[yy_current_state] )
  3052.         {
  3053.         yy_last_accepting_state = yy_current_state;
  3054.         yy_last_accepting_cpos = yy_cp;
  3055.         }
  3056.     while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  3057.         {
  3058.         yy_current_state = (int) yy_def[yy_current_state];
  3059.         if ( yy_current_state >= 769 )
  3060.             yy_c = yy_meta[(unsigned int) yy_c];
  3061.         }
  3062.     yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  3063.     yy_is_jam = (yy_current_state == 768);
  3064.  
  3065.     return yy_is_jam ? 0 : yy_current_state;
  3066.     }
  3067.  
  3068.  
  3069. #ifdef YY_USE_PROTOS
  3070. static void yyunput( int c, register char *yy_bp )
  3071. #else
  3072. static void yyunput( c, yy_bp )
  3073. int c;
  3074. register char *yy_bp;
  3075. #endif
  3076.     {
  3077.     register char *yy_cp = yy_c_buf_p;
  3078.  
  3079.     /* undo effects of setting up yytext */
  3080.     *yy_cp = yy_hold_char;
  3081.  
  3082.     if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  3083.         { /* need to shift things up to make room */
  3084.         /* +2 for EOB chars. */
  3085.         register int number_to_move = yy_n_chars + 2;
  3086.         register char *dest = &yy_current_buffer->yy_ch_buf[
  3087.                     yy_current_buffer->yy_buf_size + 2];
  3088.         register char *source =
  3089.                 &yy_current_buffer->yy_ch_buf[number_to_move];
  3090.  
  3091.         while ( source > yy_current_buffer->yy_ch_buf )
  3092.             *--dest = *--source;
  3093.  
  3094.         yy_cp += (int) (dest - source);
  3095.         yy_bp += (int) (dest - source);
  3096.         yy_n_chars = yy_current_buffer->yy_buf_size;
  3097.  
  3098.         if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  3099.             YY_FATAL_ERROR( "flex scanner push-back overflow" );
  3100.         }
  3101.  
  3102.     *--yy_cp = (char) c;
  3103.  
  3104.  
  3105.     yytext_ptr = yy_bp;
  3106.     yy_hold_char = *yy_cp;
  3107.     yy_c_buf_p = yy_cp;
  3108.     }
  3109.  
  3110.  
  3111. #ifdef __cplusplus
  3112. static int yyinput()
  3113. #else
  3114. static int input()
  3115. #endif
  3116.     {
  3117.     int c;
  3118.  
  3119.     *yy_c_buf_p = yy_hold_char;
  3120.  
  3121.     if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  3122.         {
  3123.         /* yy_c_buf_p now points to the character we want to return.
  3124.          * If this occurs *before* the EOB characters, then it's a
  3125.          * valid NUL; if not, then we've hit the end of the buffer.
  3126.          */
  3127.         if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  3128.             /* This was really a NUL. */
  3129.             *yy_c_buf_p = '\0';
  3130.  
  3131.         else
  3132.             { /* need more input */
  3133.             yytext_ptr = yy_c_buf_p;
  3134.             ++yy_c_buf_p;
  3135.  
  3136.             switch ( yy_get_next_buffer() )
  3137.                 {
  3138.                 case EOB_ACT_END_OF_FILE:
  3139.                     {
  3140.                     if ( yywrap() )
  3141.                         {
  3142.                         yy_c_buf_p =
  3143.                         yytext_ptr + YY_MORE_ADJ;
  3144.                         return EOF;
  3145.                         }
  3146.  
  3147.                     if ( ! yy_did_buffer_switch_on_eof )
  3148.                         YY_NEW_FILE;
  3149. #ifdef __cplusplus
  3150.                     return yyinput();
  3151. #else
  3152.                     return input();
  3153. #endif
  3154.                     }
  3155.  
  3156.                 case EOB_ACT_CONTINUE_SCAN:
  3157.                     yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
  3158.                     break;
  3159.  
  3160.                 case EOB_ACT_LAST_MATCH:
  3161. #ifdef __cplusplus
  3162.                     YY_FATAL_ERROR(
  3163.                     "unexpected last match in yyinput()" );
  3164. #else
  3165.                     YY_FATAL_ERROR(
  3166.                     "unexpected last match in input()" );
  3167. #endif
  3168.                 }
  3169.             }
  3170.         }
  3171.  
  3172.     c = *(unsigned char *) yy_c_buf_p;    /* cast for 8-bit char's */
  3173.     *yy_c_buf_p = '\0';    /* preserve yytext */
  3174.     yy_hold_char = *++yy_c_buf_p;
  3175.  
  3176.     yy_current_buffer->yy_at_bol = (c == '\n');
  3177.  
  3178.     return c;
  3179.     }
  3180.  
  3181.  
  3182. #ifdef YY_USE_PROTOS
  3183. void yyrestart( FILE *input_file )
  3184. #else
  3185. void yyrestart( input_file )
  3186. FILE *input_file;
  3187. #endif
  3188.     {
  3189.     if ( ! yy_current_buffer )
  3190.         yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
  3191.  
  3192.     yy_init_buffer( yy_current_buffer, input_file );
  3193.     yy_load_buffer_state();
  3194.     }
  3195.  
  3196.  
  3197. #ifdef YY_USE_PROTOS
  3198. void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
  3199. #else
  3200. void yy_switch_to_buffer( new_buffer )
  3201. YY_BUFFER_STATE new_buffer;
  3202. #endif
  3203.     {
  3204.     if ( yy_current_buffer == new_buffer )
  3205.         return;
  3206.  
  3207.     if ( yy_current_buffer )
  3208.         {
  3209.         /* Flush out information for old buffer. */
  3210.         *yy_c_buf_p = yy_hold_char;
  3211.         yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  3212.         yy_current_buffer->yy_n_chars = yy_n_chars;
  3213.         }
  3214.  
  3215.     yy_current_buffer = new_buffer;
  3216.     yy_load_buffer_state();
  3217.  
  3218.     /* We don't actually know whether we did this switch during
  3219.      * EOF (yywrap()) processing, but the only time this flag
  3220.      * is looked at is after yywrap() is called, so it's safe
  3221.      * to go ahead and always set it.
  3222.      */
  3223.     yy_did_buffer_switch_on_eof = 1;
  3224.     }
  3225.  
  3226.  
  3227. #ifdef YY_USE_PROTOS
  3228. void yy_load_buffer_state( void )
  3229. #else
  3230. void yy_load_buffer_state()
  3231. #endif
  3232.     {
  3233.     yy_n_chars = yy_current_buffer->yy_n_chars;
  3234.     yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  3235.     yyin = yy_current_buffer->yy_input_file;
  3236.     yy_hold_char = *yy_c_buf_p;
  3237.     }
  3238.  
  3239.  
  3240. #ifdef YY_USE_PROTOS
  3241. YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
  3242. #else
  3243. YY_BUFFER_STATE yy_create_buffer( file, size )
  3244. FILE *file;
  3245. int size;
  3246. #endif
  3247.     {
  3248.     YY_BUFFER_STATE b;
  3249.  
  3250.     b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  3251.     if ( ! b )
  3252.         YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  3253.  
  3254.     b->yy_buf_size = size;
  3255.  
  3256.     /* yy_ch_buf has to be 2 characters longer than the size given because
  3257.      * we need to put in 2 end-of-buffer characters.
  3258.      */
  3259.     b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
  3260.     if ( ! b->yy_ch_buf )
  3261.         YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  3262.  
  3263.     b->yy_is_our_buffer = 1;
  3264.  
  3265.     yy_init_buffer( b, file );
  3266.  
  3267.     return b;
  3268.     }
  3269.  
  3270.  
  3271. #ifdef YY_USE_PROTOS
  3272. void yy_delete_buffer( YY_BUFFER_STATE b )
  3273. #else
  3274. void yy_delete_buffer( b )
  3275. YY_BUFFER_STATE b;
  3276. #endif
  3277.     {
  3278.     if ( b == yy_current_buffer )
  3279.         yy_current_buffer = (YY_BUFFER_STATE) 0;
  3280.  
  3281.     if ( b->yy_is_our_buffer )
  3282.         yy_flex_free( (void *) b->yy_ch_buf );
  3283.  
  3284.     yy_flex_free( (void *) b );
  3285.     }
  3286.  
  3287.  
  3288. #ifndef YY_ALWAYS_INTERACTIVE
  3289. #ifndef YY_NEVER_INTERACTIVE
  3290. extern int isatty YY_PROTO(( int ));
  3291. #endif
  3292. #endif
  3293.  
  3294. #ifdef YY_USE_PROTOS
  3295. void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
  3296. #else
  3297. void yy_init_buffer( b, file )
  3298. YY_BUFFER_STATE b;
  3299. FILE *file;
  3300. #endif
  3301.  
  3302.  
  3303.     {
  3304.     yy_flush_buffer( b );
  3305.  
  3306.     b->yy_input_file = file;
  3307.     b->yy_fill_buffer = 1;
  3308.  
  3309. #if YY_ALWAYS_INTERACTIVE
  3310.     b->yy_is_interactive = 1;
  3311. #else
  3312. #if YY_NEVER_INTERACTIVE
  3313.     b->yy_is_interactive = 0;
  3314. #else
  3315.     b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
  3316. #endif
  3317. #endif
  3318.     }
  3319.  
  3320.  
  3321. #ifdef YY_USE_PROTOS
  3322. void yy_flush_buffer( YY_BUFFER_STATE b )
  3323. #else
  3324. void yy_flush_buffer( b )
  3325. YY_BUFFER_STATE b;
  3326. #endif
  3327.  
  3328.     {
  3329.     b->yy_n_chars = 0;
  3330.  
  3331.     /* We always need two end-of-buffer characters.  The first causes
  3332.      * a transition to the end-of-buffer state.  The second causes
  3333.      * a jam in that state.
  3334.      */
  3335.     b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
  3336.     b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  3337.  
  3338.     b->yy_buf_pos = &b->yy_ch_buf[0];
  3339.  
  3340.     b->yy_at_bol = 1;
  3341.     b->yy_buffer_status = YY_BUFFER_NEW;
  3342.  
  3343.     if ( b == yy_current_buffer )
  3344.         yy_load_buffer_state();
  3345.     }
  3346.  
  3347.  
  3348. #ifndef YY_NO_SCAN_BUFFER
  3349. #ifdef YY_USE_PROTOS
  3350. YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
  3351. #else
  3352. YY_BUFFER_STATE yy_scan_buffer( base, size )
  3353. char *base;
  3354. yy_size_t size;
  3355. #endif
  3356.     {
  3357.     YY_BUFFER_STATE b;
  3358.  
  3359.     if ( size < 2 ||
  3360.          base[size-2] != YY_END_OF_BUFFER_CHAR ||
  3361.          base[size-1] != YY_END_OF_BUFFER_CHAR )
  3362.         /* They forgot to leave room for the EOB's. */
  3363.         return 0;
  3364.  
  3365.     b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  3366.     if ( ! b )
  3367.         YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
  3368.  
  3369.     b->yy_buf_size = size - 2;    /* "- 2" to take care of EOB's */
  3370.     b->yy_buf_pos = b->yy_ch_buf = base;
  3371.     b->yy_is_our_buffer = 0;
  3372.     b->yy_input_file = 0;
  3373.     b->yy_n_chars = b->yy_buf_size;
  3374.     b->yy_is_interactive = 0;
  3375.     b->yy_at_bol = 1;
  3376.     b->yy_fill_buffer = 0;
  3377.     b->yy_buffer_status = YY_BUFFER_NEW;
  3378.  
  3379.     yy_switch_to_buffer( b );
  3380.  
  3381.     return b;
  3382.     }
  3383. #endif
  3384.  
  3385.  
  3386. #ifndef YY_NO_SCAN_STRING
  3387. #ifdef YY_USE_PROTOS
  3388. YY_BUFFER_STATE yy_scan_string( const char *str )
  3389. #else
  3390. YY_BUFFER_STATE yy_scan_string( str )
  3391. const char *str;
  3392. #endif
  3393.     {
  3394.     int len;
  3395.     for ( len = 0; str[len]; ++len )
  3396.         ;
  3397.  
  3398.     return yy_scan_bytes( str, len );
  3399.     }
  3400. #endif
  3401.  
  3402.  
  3403. #ifndef YY_NO_SCAN_BYTES
  3404. #ifdef YY_USE_PROTOS
  3405. YY_BUFFER_STATE yy_scan_bytes( const char *bytes, int len )
  3406. #else
  3407. YY_BUFFER_STATE yy_scan_bytes( bytes, len )
  3408. const char *bytes;
  3409. int len;
  3410. #endif
  3411.     {
  3412.     YY_BUFFER_STATE b;
  3413.     char *buf;
  3414.     yy_size_t n;
  3415.     int i;
  3416.  
  3417.     /* Get memory for full buffer, including space for trailing EOB's. */
  3418.     n = len + 2;
  3419.     buf = (char *) yy_flex_alloc( n );
  3420.     if ( ! buf )
  3421.         YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
  3422.  
  3423.     for ( i = 0; i < len; ++i )
  3424.         buf[i] = bytes[i];
  3425.  
  3426.     buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
  3427.  
  3428.     b = yy_scan_buffer( buf, n );
  3429.     if ( ! b )
  3430.         YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
  3431.  
  3432.     /* It's okay to grow etc. this buffer, and we should throw it
  3433.      * away when we're done.
  3434.      */
  3435.     b->yy_is_our_buffer = 1;
  3436.  
  3437.     return b;
  3438.     }
  3439. #endif
  3440.  
  3441.  
  3442. #ifndef YY_NO_PUSH_STATE
  3443. #ifdef YY_USE_PROTOS
  3444. static void yy_push_state( int new_state )
  3445. #else
  3446. static void yy_push_state( new_state )
  3447. int new_state;
  3448. #endif
  3449.     {
  3450.     if ( yy_start_stack_ptr >= yy_start_stack_depth )
  3451.         {
  3452.         yy_size_t new_size;
  3453.  
  3454.         yy_start_stack_depth += YY_START_STACK_INCR;
  3455.         new_size = yy_start_stack_depth * sizeof( int );
  3456.  
  3457.         if ( ! yy_start_stack )
  3458.             yy_start_stack = (int *) yy_flex_alloc( new_size );
  3459.  
  3460.         else
  3461.             yy_start_stack = (int *) yy_flex_realloc(
  3462.                     (void *) yy_start_stack, new_size );
  3463.  
  3464.         if ( ! yy_start_stack )
  3465.             YY_FATAL_ERROR(
  3466.             "out of memory expanding start-condition stack" );
  3467.         }
  3468.  
  3469.     yy_start_stack[yy_start_stack_ptr++] = YY_START;
  3470.  
  3471.     BEGIN(new_state);
  3472.     }
  3473. #endif
  3474.  
  3475.  
  3476. #ifndef YY_NO_POP_STATE
  3477. static void yy_pop_state()
  3478.     {
  3479.     if ( --yy_start_stack_ptr < 0 )
  3480.         YY_FATAL_ERROR( "start-condition stack underflow" );
  3481.  
  3482.     BEGIN(yy_start_stack[yy_start_stack_ptr]);
  3483.     }
  3484. #endif
  3485.  
  3486.  
  3487. #ifndef YY_NO_TOP_STATE
  3488. static int yy_top_state()
  3489.     {
  3490.     return yy_start_stack[yy_start_stack_ptr - 1];
  3491.     }
  3492. #endif
  3493.  
  3494. #ifndef YY_EXIT_FAILURE
  3495. #define YY_EXIT_FAILURE 2
  3496. #endif
  3497.  
  3498. #ifdef YY_USE_PROTOS
  3499. static void yy_fatal_error( const char msg[] )
  3500. #else
  3501. static void yy_fatal_error( msg )
  3502. char msg[];
  3503. #endif
  3504.     {
  3505.     (void) fprintf( stderr, "%s\n", msg );
  3506.     exit( YY_EXIT_FAILURE );
  3507.     }
  3508.  
  3509.  
  3510.  
  3511. /* Redefine yyless() so it works in section 3 code. */
  3512.  
  3513. #undef yyless
  3514. #define yyless(n) \
  3515.     do \
  3516.         { \
  3517.         /* Undo effects of setting up yytext. */ \
  3518.         yytext[yyleng] = yy_hold_char; \
  3519.         yy_c_buf_p = yytext + n - YY_MORE_ADJ; \
  3520.         yy_hold_char = *yy_c_buf_p; \
  3521.         *yy_c_buf_p = '\0'; \
  3522.         yyleng = n; \
  3523.         } \
  3524.     while ( 0 )
  3525.  
  3526.  
  3527. /* Internal utility routines. */
  3528.  
  3529. #ifndef yytext_ptr
  3530. #ifdef YY_USE_PROTOS
  3531. static void yy_flex_strncpy( char *s1, const char *s2, int n )
  3532. #else
  3533. static void yy_flex_strncpy( s1, s2, n )
  3534. char *s1;
  3535. const char *s2;
  3536. int n;
  3537. #endif
  3538.     {
  3539.     register int i;
  3540.     for ( i = 0; i < n; ++i )
  3541.         s1[i] = s2[i];
  3542.     }
  3543. #endif
  3544.  
  3545.  
  3546. #ifdef YY_USE_PROTOS
  3547. static void *yy_flex_alloc( yy_size_t size )
  3548. #else
  3549. static void *yy_flex_alloc( size )
  3550. yy_size_t size;
  3551. #endif
  3552.     {
  3553.     return (void *) malloc( size );
  3554.     }
  3555.  
  3556. #ifdef YY_USE_PROTOS
  3557. static void *yy_flex_realloc( void *ptr, yy_size_t size )
  3558. #else
  3559. static void *yy_flex_realloc( ptr, size )
  3560. void *ptr;
  3561. yy_size_t size;
  3562. #endif
  3563.     {
  3564.     return (void *) realloc( ptr, size );
  3565.     }
  3566.  
  3567. #ifdef YY_USE_PROTOS
  3568. static void yy_flex_free( void *ptr )
  3569. #else
  3570. static void yy_flex_free( ptr )
  3571. void *ptr;
  3572. #endif
  3573.     {
  3574.     free( ptr );
  3575.     }
  3576.  
  3577. #if YY_MAIN
  3578. int main()
  3579.     {
  3580.     yylex();
  3581.     return 0;
  3582.     }
  3583. #endif
  3584. #line 650 "scan.l"
  3585.  
  3586.  
  3587.  
  3588. int yywrap()
  3589.     {
  3590.     if ( --num_input_files > 0 )
  3591.         {
  3592.         set_input_file( *++input_files );
  3593.         return 0;
  3594.         }
  3595.  
  3596.     else
  3597.         return 1;
  3598.     }
  3599.  
  3600.  
  3601. /* set_input_file - open the given file (if NULL, stdin) for scanning */
  3602.  
  3603. void set_input_file( file )
  3604. char *file;
  3605.     {
  3606.     if ( file )
  3607.         {
  3608.         infilename = copy_string( file );
  3609.         yyin = fopen( infilename, "r" );
  3610.  
  3611.         if ( yyin == NULL )
  3612.             lerrsf( _( "can't open %s" ), file );
  3613.         }
  3614.  
  3615.     else
  3616.         {
  3617.         yyin = stdin;
  3618.         infilename = copy_string( "<stdin>" );
  3619.         }
  3620.  
  3621.     linenum = 1;
  3622.     }
  3623.  
  3624.  
  3625. /* Wrapper routines for accessing the scanner's malloc routines. */
  3626.  
  3627. void *flex_alloc( size )
  3628. size_t size;
  3629.     {
  3630.     return (void *) malloc( size );
  3631.     }
  3632.  
  3633. void *flex_realloc( ptr, size )
  3634. void *ptr;
  3635. size_t size;
  3636.     {
  3637.     return (void *) realloc( ptr, size );
  3638.     }
  3639.  
  3640. void flex_free( ptr )
  3641. void *ptr;
  3642.     {
  3643.     if ( ptr )
  3644.         free( ptr );
  3645.     }
  3646.